This commit is contained in:
Dimitris Apostolou 2025-02-24 14:34:32 +02:00 committed by GitHub
commit 39e951a65a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 18 additions and 11 deletions

View File

@ -23,3 +23,10 @@ incrementalmerkletree-testing = { version = "0.3", path = "incrementalmerkletree
# Testing
proptest = "1"
assert_matches = "1.5"
bitflags = "2"
either = { version = "1.8", default-features = false }
rand = "0.8"
rand_chacha = "0.3"
rand_core = "0.6"
tracing = "0.1"

View File

@ -18,16 +18,16 @@ all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
either = { version = "1.8", default-features = false }
either = { workspace = true }
proptest = { workspace = true, optional = true }
rand = { version = "0.8", optional = true }
rand_core = { version = "0.6", optional = true }
rand = { workspace = true, optional = true }
rand_core = { workspace = true, optional = true }
[dev-dependencies]
proptest.workspace = true
rand = "0.8"
rand_core = "0.6"
rand_chacha = "0.3"
rand = { workspace = true }
rand_core = { workspace = true }
rand_chacha = { workspace = true }
[features]
# The `std` feature is no longer enabled by default because it is not needed

View File

@ -17,16 +17,16 @@ all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
assert_matches = { version = "1.5", optional = true }
bitflags = "2"
either = "1.8"
assert_matches = { workspace = true, optional = true }
bitflags = { workspace = true }
either = { workspace = true }
incrementalmerkletree.workspace = true
proptest = { workspace = true, optional = true }
incrementalmerkletree-testing = { workspace = true, optional = true }
tracing = "0.1"
tracing = { workspace = true }
[dev-dependencies]
assert_matches = "1.5"
assert_matches = { workspace = true }
incrementalmerkletree = { workspace = true, features = ["test-dependencies"] }
incrementalmerkletree-testing.workspace = true
proptest.workspace = true