Migrate to published `incrementalmerkletree 0.5`

This commit is contained in:
Jack Grigg 2023-09-08 17:16:42 +00:00
parent 6ef89d5f15
commit 213b11a7ad
2 changed files with 5 additions and 7 deletions

View File

@ -6,6 +6,8 @@ and this project adheres to Rust's notion of
[Semantic Versioning](https://semver.org/spec/v2.0.0.html). [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased] ## [Unreleased]
### Changed
- Migrated to `incrementalmerkletree 0.5`.
## [0.5.0] - 2023-06-06 ## [0.5.0] - 2023-06-06
### Changed ### Changed

View File

@ -42,7 +42,7 @@ nonempty = "0.7"
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
subtle = "2.3" subtle = "2.3"
zcash_note_encryption = "0.4" zcash_note_encryption = "0.4"
incrementalmerkletree = "0.4" incrementalmerkletree = "0.5"
# Logging # Logging
tracing = "0.1" tracing = "0.1"
@ -52,13 +52,13 @@ image = { version = ">= 0.24, < 0.24.5", optional = true } # 0.24.5 has MSRV 1.6
plotters = { version = "0.3.0", optional = true } plotters = { version = "0.3.0", optional = true }
[dev-dependencies] [dev-dependencies]
bridgetree = "0.3" bridgetree = "0.4"
criterion = "0.3" criterion = "0.3"
halo2_gadgets = { version = "0.3", features = ["test-dependencies"] } halo2_gadgets = { version = "0.3", features = ["test-dependencies"] }
hex = "0.4" hex = "0.4"
proptest = "1.0.0" proptest = "1.0.0"
zcash_note_encryption = { version = "0.4", features = ["pre-zip-212"] } zcash_note_encryption = { version = "0.4", features = ["pre-zip-212"] }
incrementalmerkletree = { version = "0.4", features = ["test-dependencies"] } incrementalmerkletree = { version = "0.5", features = ["test-dependencies"] }
[target.'cfg(unix)'.dev-dependencies] [target.'cfg(unix)'.dev-dependencies]
inferno = ">= 0.11, < 0.11.15" inferno = ">= 0.11, < 0.11.15"
@ -90,7 +90,3 @@ debug = true
[profile.bench] [profile.bench]
debug = true debug = true
[patch.crates-io]
bridgetree = { git = "https://github.com/zcash/incrementalmerkletree.git", rev = "67111e29403c33f2e36d6924167f1d5f04ad0fc2" }
incrementalmerkletree = { git = "https://github.com/zcash/incrementalmerkletree.git", rev = "67111e29403c33f2e36d6924167f1d5f04ad0fc2" }