diff --git a/masp_note_encryption/Cargo.toml b/masp_note_encryption/Cargo.toml index afd7920d..9360d04c 100644 --- a/masp_note_encryption/Cargo.toml +++ b/masp_note_encryption/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "masp_note_encryption" description = "Note encryption for MASP transactions" -version = "0.2.0" +version = "0.4.0" authors = [ "Jack Grigg ", "Kris Nuttycombe ", - "joe@heliax.dev" + "joe@heliax.dev", ] homepage = "https://github.com/anoma/masp" repository = "https://github.com/anoma/masp" @@ -24,7 +24,7 @@ chacha20 = { version = "0.9", default-features = false } chacha20poly1305 = { version = "0.10", default-features = false } rand_core = { version = "0.6", default-features = false } subtle = { version = "2.3", default-features = false } -borsh = {version = "0.9", features = ["const-generics"]} +borsh = { version = "0.9", features = ["const-generics"] } [features] default = ["alloc"] diff --git a/masp_primitives/Cargo.toml b/masp_primitives/Cargo.toml index 51a450f6..13bf9242 100644 --- a/masp_primitives/Cargo.toml +++ b/masp_primitives/Cargo.toml @@ -21,7 +21,7 @@ categories = ["cryptography::cryptocurrencies"] all-features = true [dependencies] -zcash_encoding = { version = "0.0", git = "https://github.com/zcash/librustzcash", rev = "43c18d0" } +zcash_encoding = { version = "0.2", git = "https://github.com/zcash/librustzcash", rev = "bd7f9d7" } # Dependencies exposed in a public API: # (Breaking upgrades to these require a breaking upgrade to this crate.) @@ -75,7 +75,7 @@ fpe = "0.6" borsh = { version = "0.9", features = ["const-generics"] } [dependencies.masp_note_encryption] -version = "0.2" +version = "0.4" path = "../masp_note_encryption" features = ["pre-zip-212"]