zcash_primitives 0.11.0
This commit is contained in:
parent
7be5d1bf7d
commit
a419b56e80
|
@ -9,7 +9,7 @@ and this library adheres to Rust's notion of
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- Bumped dependencies to `bls12_381 0.8`, `group 0.13`, `orchard 0.4`,
|
- Bumped dependencies to `bls12_381 0.8`, `group 0.13`, `orchard 0.4`,
|
||||||
`tonic 0.9`, `base64 0.21`, `bech32 0.9`.
|
`tonic 0.9`, `base64 0.21`, `bech32 0.9`, `zcash_primitives 0.11`.
|
||||||
- The dependency on `zcash_primitives` no longer enables the `multicore` feature
|
- The dependency on `zcash_primitives` no longer enables the `multicore` feature
|
||||||
by default in order to support compilation under `wasm32-wasi`. Users of other
|
by default in order to support compilation under `wasm32-wasi`. Users of other
|
||||||
platforms may need to include an explicit dependency on `zcash_primitives`
|
platforms may need to include an explicit dependency on `zcash_primitives`
|
||||||
|
|
|
@ -23,7 +23,7 @@ development = ["zcash_proofs"]
|
||||||
zcash_address = { version = "0.2", path = "../components/zcash_address" }
|
zcash_address = { version = "0.2", path = "../components/zcash_address" }
|
||||||
zcash_encoding = { version = "0.2", path = "../components/zcash_encoding" }
|
zcash_encoding = { version = "0.2", path = "../components/zcash_encoding" }
|
||||||
zcash_note_encryption = "0.3"
|
zcash_note_encryption = "0.3"
|
||||||
zcash_primitives = { version = "0.10", path = "../zcash_primitives", default-features = false }
|
zcash_primitives = { version = "0.11", path = "../zcash_primitives", default-features = false }
|
||||||
|
|
||||||
# Dependencies exposed in a public API:
|
# Dependencies exposed in a public API:
|
||||||
# (Breaking upgrades to these require a breaking upgrade to this crate.)
|
# (Breaking upgrades to these require a breaking upgrade to this crate.)
|
||||||
|
|
|
@ -23,7 +23,7 @@ and this library adheres to Rust's notion of
|
||||||
documentation.
|
documentation.
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- Bumped dependencies to `group 0.13`, `jubjub 0.10`
|
- Bumped dependencies to `group 0.13`, `jubjub 0.10`, `zcash_primitives 0.11`.
|
||||||
- The dependency on `zcash_primitives` no longer enables the `multicore` feature
|
- The dependency on `zcash_primitives` no longer enables the `multicore` feature
|
||||||
by default in order to support compilation under `wasm32-wasi`. Users of other
|
by default in order to support compilation under `wasm32-wasi`. Users of other
|
||||||
platforms may need to include an explicit dependency on `zcash_primitives`
|
platforms may need to include an explicit dependency on `zcash_primitives`
|
||||||
|
|
|
@ -15,7 +15,7 @@ rust-version = "1.60"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
zcash_client_backend = { version = "0.7", path = "../zcash_client_backend" }
|
zcash_client_backend = { version = "0.7", path = "../zcash_client_backend" }
|
||||||
zcash_primitives = { version = "0.10", path = "../zcash_primitives", default-features = false }
|
zcash_primitives = { version = "0.11", path = "../zcash_primitives", default-features = false }
|
||||||
|
|
||||||
# Dependencies exposed in a public API:
|
# Dependencies exposed in a public API:
|
||||||
# (Breaking upgrades to these require a breaking upgrade to this crate.)
|
# (Breaking upgrades to these require a breaking upgrade to this crate.)
|
||||||
|
@ -52,7 +52,7 @@ regex = "1.4"
|
||||||
tempfile = "3"
|
tempfile = "3"
|
||||||
zcash_note_encryption = "0.3"
|
zcash_note_encryption = "0.3"
|
||||||
zcash_proofs = { version = "0.10", path = "../zcash_proofs" }
|
zcash_proofs = { version = "0.10", path = "../zcash_proofs" }
|
||||||
zcash_primitives = { version = "0.10", path = "../zcash_primitives", features = ["test-dependencies"] }
|
zcash_primitives = { version = "0.11", path = "../zcash_primitives", features = ["test-dependencies"] }
|
||||||
zcash_address = { version = "0.2", path = "../components/zcash_address", features = ["test-dependencies"] }
|
zcash_address = { version = "0.2", path = "../components/zcash_address", features = ["test-dependencies"] }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|
|
@ -11,7 +11,7 @@ rust-version = "1.60"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
blake2b_simd = "1"
|
blake2b_simd = "1"
|
||||||
zcash_primitives = { version = "0.10", path = "../zcash_primitives", default-features = false, features = ["zfuture" ] }
|
zcash_primitives = { version = "0.11", path = "../zcash_primitives", default-features = false, features = ["zfuture" ] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
ff = "0.13"
|
ff = "0.13"
|
||||||
|
|
|
@ -6,6 +6,8 @@ and this library adheres to Rust's notion of
|
||||||
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.11.0] - 2023-04-15
|
||||||
### Added
|
### Added
|
||||||
- `zcash_primitives::zip32::fingerprint` module, containing types for deriving
|
- `zcash_primitives::zip32::fingerprint` module, containing types for deriving
|
||||||
ZIP 32 Seed Fingerprints.
|
ZIP 32 Seed Fingerprints.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "zcash_primitives"
|
name = "zcash_primitives"
|
||||||
description = "Rust implementations of the Zcash primitives"
|
description = "Rust implementations of the Zcash primitives"
|
||||||
version = "0.10.2"
|
version = "0.11.0"
|
||||||
authors = [
|
authors = [
|
||||||
"Jack Grigg <jack@z.cash>",
|
"Jack Grigg <jack@z.cash>",
|
||||||
"Kris Nuttycombe <kris@electriccoin.co>"
|
"Kris Nuttycombe <kris@electriccoin.co>"
|
||||||
|
|
|
@ -9,7 +9,7 @@ and this library adheres to Rust's notion of
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- Bumped dependencies to `bls12_381 0.8`, `group 0.13`, `jubjub 0.10`,
|
- Bumped dependencies to `bls12_381 0.8`, `group 0.13`, `jubjub 0.10`,
|
||||||
`bellman 0.14`, `redjubjub 0.7`.
|
`bellman 0.14`, `redjubjub 0.7`, `zcash_primitives 0.11`.
|
||||||
|
|
||||||
## [0.10.0] - 2023-02-01
|
## [0.10.0] - 2023-02-01
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -17,7 +17,7 @@ categories = ["cryptography::cryptocurrencies"]
|
||||||
all-features = true
|
all-features = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
zcash_primitives = { version = "0.10", path = "../zcash_primitives", default-features = false }
|
zcash_primitives = { version = "0.11", path = "../zcash_primitives", default-features = false }
|
||||||
|
|
||||||
# Dependencies exposed in a public API:
|
# Dependencies exposed in a public API:
|
||||||
# (Breaking upgrades to these require a breaking upgrade to this crate.)
|
# (Breaking upgrades to these require a breaking upgrade to this crate.)
|
||||||
|
|
Loading…
Reference in New Issue