diff --git a/Cargo.lock b/Cargo.lock index 8e5b81fb76a..090f6eb6d4b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1464,12 +1464,6 @@ version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" -[[package]] -name = "embed-manifest" -version = "1.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "40ff574b0b0a794f8995383bb83f21f8f99214422cae791cb48d66da524b00f7" - [[package]] name = "encode_unicode" version = "0.3.6" @@ -6259,15 +6253,15 @@ dependencies = [ [[package]] name = "zcash_script" -version = "0.1.6" -source = "git+https://github.com/ZcashFoundation/zcash_script.git?rev=0ccbbba5d84ebb33c867161147848bf89d6f0596#0ccbbba5d84ebb33c867161147848bf89d6f0596" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81e4255f320dead417a91cbf00a178b0d702b813d5a8c95a5f2e4cc7ccced17f" dependencies = [ "bindgen", "blake2b_simd", "cc", "cxx", "cxx-gen", - "embed-manifest", "libc", "memuse", "orchard", diff --git a/deny.toml b/deny.toml index f14f7a52758..b095ea4e69a 100644 --- a/deny.toml +++ b/deny.toml @@ -94,9 +94,10 @@ unknown-git = "deny" allow-registry = ["https://github.com/rust-lang/crates.io-index"] # List of URLs for allowed Git repositories allow-git = [ + # for zcash_proofs > 0.7.1 while it's still not published + "https://github.com/zcash/librustzcash.git" ] [sources.allow-org] github = [ - "ZcashFoundation", ] diff --git a/zebra-script/Cargo.toml b/zebra-script/Cargo.toml index 5e1b5ee3237..e8115f4d096 100644 --- a/zebra-script/Cargo.toml +++ b/zebra-script/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -zcash_script = { git = "https://github.com/ZcashFoundation/zcash_script.git", rev = "0ccbbba5d84ebb33c867161147848bf89d6f0596" } +zcash_script = "0.1.7" zebra-chain = { path = "../zebra-chain" }