-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* rm depend/zcash * Squashed 'depend/zcash/' content from commit 00c2a2434 git-subtree-dir: depend/zcash git-subtree-split: 00c2a2434e655d275c26986c8751793f4c98bb01 * rm depends/zcash/Cargo.toml * updates Cargo.toml * Updates Changelog * add tl_expected.hpp * Fix build * add test-dependencies features to ecc deps * add missing .c files from secp256k1 * chore: Release zcash_script version 0.1.13 --------- Co-authored-by: Conrado Gouvea <[email protected]>
- Loading branch information
1 parent
62c8394
commit b900ff4
Showing
326 changed files
with
42,654 additions
and
8,345 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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "zcash_script" | ||
version = "0.1.12" | ||
version = "0.1.13" | ||
authors = ["Tamas Blummer <[email protected]>", "Zcash Foundation <[email protected]>"] | ||
license = "Apache-2.0" | ||
readme = "README.md" | ||
|
@@ -38,6 +38,7 @@ include = [ | |
"/depend/zcash/src/support/cleanse.cpp", | ||
"/depend/zcash/src/support/cleanse.h", | ||
"/depend/zcash/src/rust/gen/", | ||
"/depend/expected/include/", | ||
] | ||
|
||
[lib] | ||
|
@@ -55,23 +56,25 @@ blake2b_simd = "1" | |
bls12_381 = "0.8" | ||
byteorder = "1" | ||
crossbeam-channel = "0.5" | ||
cxx = { version = "=1.0.94", features = ["c++17"] } | ||
cxx = { version = "=1.0.95", features = ["c++17"] } | ||
group = "0.13" | ||
incrementalmerkletree = "0.3" | ||
incrementalmerkletree = "0.4" | ||
jubjub = "0.10" | ||
libc = "0.2" | ||
memuse = "0.2" | ||
metrics = "0.20" | ||
orchard = "0.4" | ||
metrics = "0.21" | ||
orchard = "0.5" | ||
rand_core = "0.6" | ||
rayon = "1.5" | ||
subtle = "2.2" | ||
tracing = "0.1" | ||
zcash_address = "0.2" | ||
zcash_address = "0.3" | ||
zcash_encoding = "0.2" | ||
zcash_note_encryption = "0.3" | ||
zcash_primitives = { version = "0.11", features = ["temporary-zcashd", "transparent-inputs"] } | ||
zcash_proofs = "0.11" | ||
zcash_note_encryption = "0.4" | ||
zcash_primitives = { version = "0.12", features = ["temporary-zcashd", "transparent-inputs"] } | ||
zcash_proofs = "0.12" | ||
bridgetree = "0.3" | ||
rand = "0.8" | ||
|
||
[build-dependencies] | ||
# The `bindgen` dependency should automatically upgrade to match the version used by zebra-state's `rocksdb` dependency in: | ||
|
@@ -95,6 +98,8 @@ syn = { version = "1.0.109", features = ["full", "printing"] } | |
# Treat minor versions with a zero major version as compatible (cargo doesn't by default). | ||
hex = ">= 0.4.3" | ||
lazy_static = "1.4.0" | ||
incrementalmerkletree = { version = "0.4", features = ["test-dependencies"] } | ||
zcash_primitives = { version = "0.12", features = ["temporary-zcashd", "transparent-inputs", "test-dependencies"] } | ||
|
||
[[package.metadata.release.pre-release-replacements]] | ||
file = "CHANGELOG.md" | ||
|
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.