diff --git a/CHANGELOG.md b/CHANGELOG.md index dc8c6280..760b2742 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,9 @@ and this project adheres to Rust's notion of - `orchard::builder::SpendInfo::new` - `orchard::circuit::Circuit::from_action_context` +### Changed +- Migrated to `zcash_note_encryption 0.2`. + ## [0.2.0] - 2022-06-24 ### Added - `orchard::bundle::BatchValidator` diff --git a/Cargo.toml b/Cargo.toml index 97194e8a..cd6bf741 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,7 +41,7 @@ reddsa = "0.3" nonempty = "0.7" serde = { version = "1.0", features = ["derive"] } subtle = "2.3" -zcash_note_encryption = "0.1" +zcash_note_encryption = "0.2" incrementalmerkletree = "0.3" # Logging @@ -55,7 +55,7 @@ criterion = "0.3" halo2_gadgets = { version = "0.2", features = ["test-dependencies"] } hex = "0.4" proptest = "1.0.0" -zcash_note_encryption = { version = "0.1", features = ["pre-zip-212"] } +zcash_note_encryption = { version = "0.2", features = ["pre-zip-212"] } [target.'cfg(unix)'.dev-dependencies] pprof = { version = "0.9", features = ["criterion", "flamegraph"] } # MSRV 1.56 @@ -84,7 +84,3 @@ debug = true [profile.bench] debug = true - -[patch.crates-io] -zcash_note_encryption = { git = "https://github.com/zcash/librustzcash.git", rev = "515b0a40ec06eb640fffa65b745166511bf56ecc" } -group = { git = "https://github.com/zkcrypto/group.git", rev = "a7f3ceb2373e9fe536996f7b4d55c797f3e667f0" }