-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
309 additions
and
795 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ jobs: | |
run: echo "MASP_PARAMS=$(cargo run --release --example get-params-path --features directories)" >> $GITHUB_ENV | ||
- name: Cache MASP parameters | ||
id: cache-params | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
with: | ||
path: ${{ env.MASP_PARAMS }} | ||
key: ${{ runner.os }}-params | ||
|
@@ -127,4 +127,4 @@ jobs: | |
- name: Install cargo-audit | ||
run: cargo install cargo-audit | ||
- name: Cargo Audit | ||
run: cargo audit | ||
run: cargo audit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" | ||
|
@@ -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 = "1.0.0-alpha.4", features = ["schema", "derive"]} | ||
|
||
[features] | ||
default = ["alloc"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,22 +6,22 @@ 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" | ||
repository = "https://github.com/anoma/masp" | ||
readme = "README.md" | ||
license = "MIT OR Apache-2.0" | ||
edition = "2021" | ||
rust-version = "1.65" | ||
rust-version = "1.70" | ||
categories = ["cryptography::cryptocurrencies"] | ||
|
||
[package.metadata.docs.rs] | ||
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.) | ||
|
@@ -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" | ||
|
@@ -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 | ||
|
@@ -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.) | ||
|
@@ -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 = "1.0.0-alpha.4", features = ["schema", "derive"]} | ||
[dependencies.masp_note_encryption] | ||
version = "0.2" | ||
path = "../masp_note_encryption" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.