Skip to content

Commit

Permalink
update dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
joe bebel committed Aug 21, 2023
1 parent d130e70 commit a49195f
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 23 deletions.
22 changes: 11 additions & 11 deletions masp_primitives/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "masp_primitives"
description = "Rust implementations of the experimental MASP primitives (derived from zcash_primitives)"
version = "0.9.0"
version = "0.12.0"
authors = [
"Jack Grigg <[email protected]>",
"Kris Nuttycombe <[email protected]>",
"joe <[email protected]>",
"Murisi Tarusenga <[email protected]>",
"Murisi Tarusenga <[email protected]>",
"Heliax AG <[email protected]>",
]
homepage = "https://github.com/anoma/masp"
Expand All @@ -31,7 +31,7 @@ rand_core = "0.6"

# - Digests (output types exposed)
blake2b_simd = "1"
sha2 = "0.9"
sha2 = "0.10"

# - Metrics
memuse = "0.2.1"
Expand All @@ -43,11 +43,11 @@ num-traits = "0.2.14"
subtle = "2.2.3"

# - Shielded protocols
bls12_381 = "0.7"
ff = "0.12"
group = { version = "0.12.1", features = ["wnaf-memuse"] }
bls12_381 = "0.8"
ff = "0.13"
group = { version = "0.13", features = ["wnaf-memuse"] }
incrementalmerkletree = "0.3"
jubjub = "0.9"
jubjub = "0.10"
nonempty = "0.7"

# - Static constants
Expand All @@ -57,7 +57,7 @@ lazy_static = "1"
proptest = { version = "1.0.0", optional = true }

# - ZIP 339
bip0039 = { version = "0.9", features = ["std", "all-languages"] }
bip0039 = { version = "0.10", features = ["std", "all-languages"] }

# Dependencies used internally:
# (Breaking upgrades to these are usually backwards-compatible, but check MSRVs.)
Expand All @@ -70,10 +70,10 @@ bitvec = "1"
blake2s_simd = "1"

# - ZIP 32
aes = "0.7"
fpe = "0.5"
aes = "0.8"
fpe = "0.6"

borsh = {version = "0.9", features = ["const-generics"]}
borsh = { version = "0.9", features = ["const-generics"] }
[dependencies.masp_note_encryption]
version = "0.2"
path = "../masp_note_encryption"
Expand Down
21 changes: 9 additions & 12 deletions masp_proofs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
[package]
name = "masp_proofs"
description = "Experimental MASP zk-SNARK circuits and proving APIs, based on zcash_proofs"
version = "0.9.0"
authors = [
"Jack Grigg <[email protected]>",
"joe <[email protected]>",
]
version = "0.12.1"
authors = ["Jack Grigg <[email protected]>", "joe <[email protected]>"]
homepage = "https://github.com/anoma/masp"
repository = "https://github.com/anoma/masp"
readme = "README.md"
Expand All @@ -18,14 +15,14 @@ categories = ["cryptography::cryptocurrencies"]
all-features = true

[dependencies]
masp_primitives = { version = "0.9", path = "../masp_primitives" }
masp_primitives = { version = "0.12", path = "../masp_primitives" }

# Dependencies exposed in a public API:
# (Breaking upgrades to these require a breaking upgrade to this crate.)
bellman = { version = "0.13.1", default-features = false, features = ["groth16"] }
bls12_381 = "0.7"
group = "0.12"
jubjub = "0.9"
bellman = { version = "0.14", default-features = false, features = ["groth16"] }
bls12_381 = "0.8"
group = "0.13"
jubjub = "0.10"
lazy_static = "1"
minreq = { version = "2", features = ["https"], optional = true }
rand_core = "0.6"
Expand All @@ -35,9 +32,9 @@ tracing = "0.1"
# (Breaking upgrades to these are usually backwards-compatible, but check MSRVs.)
blake2b_simd = "1"
directories = { version = "4", optional = true }
redjubjub = "0.5"
redjubjub = "0.7"
getrandom = { version = "0.2", features = ["js"] }
itertools = "0.10.1"
itertools = "0.11"

[dev-dependencies]
byteorder = "1"
Expand Down

0 comments on commit a49195f

Please sign in to comment.