Merge 85e1e10870
into 561a6dc29b
This commit is contained in:
commit
39e951a65a
|
@ -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"
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue