Skip to content

Commit 834412f

Browse files
committed
remove hashbrown
1 parent fcd0112 commit 834412f

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

Cargo.lock

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

clarity-serialization/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ keywords = [ "stacks", "stx", "bitcoin", "crypto", "blockstack", "decentralized"
1010
readme = "README.md"
1111

1212
[dependencies]
13-
hashbrown = { workspace = true }
1413
lazy_static = { workspace = true }
1514
regex = { version = "1", default-features = false }
1615
serde = { workspace = true }

clarity-serialization/src/types/signatures.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,12 @@
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <http://www.gnu.org/licenses/>.
1616

17-
use std::collections::BTreeMap;
1817
use std::collections::btree_map::Entry;
18+
use std::collections::{BTreeMap, HashSet};
1919
use std::hash::Hash;
2020
use std::sync::Arc;
2121
use std::{cmp, fmt};
2222

23-
// TypeSignatures
24-
use hashbrown::HashSet;
2523
use lazy_static::lazy_static;
2624
use serde::{Deserialize, Serialize};
2725
use stacks_common::types::StacksEpochId;

0 commit comments

Comments
 (0)