Skip to content

Commit

Permalink
Merge pull request #17 from YosysHQ/stable_set
Browse files Browse the repository at this point in the history
Add stable_set crate
  • Loading branch information
aiju authored Oct 29, 2024
2 parents ce10738 + ca7795a commit 8a42e72
Show file tree
Hide file tree
Showing 10 changed files with 2,092 additions and 10 deletions.
46 changes: 36 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ members = [
"extract",
"imctk",
"lit",
"stable_set",

# comment to force multi-line layout
]
Expand Down
18 changes: 18 additions & 0 deletions stable_set/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[package]
name = "stable_set"
version = "0.1.0"
edition = "2021"

publish = false

[lints]
workspace = true

[dependencies]
hashbrown = { version = "0.14.5", default-features = false, features = ["inline-more"] }

[dev-dependencies]
zwohash = "0.1.2"
rand = "0.8.5"
rand_pcg = "0.3.1"
indexmap = "2.6.0"
Loading

0 comments on commit 8a42e72

Please sign in to comment.