Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update dependency versions #59

Merged
5 commits merged into from
Aug 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions masp_note_encryption/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version = "0.2.0"
authors = [
"Jack Grigg <[email protected]>",
"Kris Nuttycombe <[email protected]>",
"[email protected]"
"[email protected]",
]
homepage = "https://github.com/anoma/masp"
repository = "https://github.com/anoma/masp"
Expand All @@ -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"]
Expand Down
22 changes: 11 additions & 11 deletions masp_primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ 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 @@ -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.)
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
17 changes: 7 additions & 10 deletions masp_proofs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@
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]>",
]
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 @@ -22,10 +19,10 @@ masp_primitives = { version = "0.9", 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
Loading