-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1665 from zcash/release/zcash_primitives-0.21
Release/zcash primitives 0.21
- Loading branch information
Showing
22 changed files
with
138 additions
and
81 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Changelog | ||
All notable changes to this library will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this library adheres to Rust's notion of | ||
[Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
## [0.1.0] - 2024-12-16 | ||
Initial release supporting the PCZT v1 format. |
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 = "pczt" | ||
version = "0.0.0" | ||
version = "0.1.0" | ||
authors = ["Jack Grigg <[email protected]>"] | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "zcash_client_backend" | ||
description = "APIs for creating shielded Zcash light clients" | ||
version = "0.15.0" | ||
version = "0.16.0" | ||
authors = [ | ||
"Jack Grigg <[email protected]>", | ||
"Kris Nuttycombe <[email protected]>" | ||
|
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,7 +1,7 @@ | ||
[package] | ||
name = "zcash_client_sqlite" | ||
description = "An SQLite-based Zcash light client" | ||
version = "0.13.0" | ||
version = "0.14.0" | ||
authors = [ | ||
"Jack Grigg <[email protected]>", | ||
"Kris Nuttycombe <[email protected]>" | ||
|
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,7 +1,7 @@ | ||
[package] | ||
name = "zcash_keys" | ||
description = "Zcash key and address management" | ||
version = "0.5.0" | ||
version = "0.6.0" | ||
authors = [ | ||
"Jack Grigg <[email protected]>", | ||
"Kris Nuttycombe <[email protected]>" | ||
|
@@ -72,12 +72,15 @@ hex.workspace = true | |
jubjub.workspace = true | ||
proptest.workspace = true | ||
rand_core.workspace = true | ||
orchard = { workspace = true, features = ["circuit"] } | ||
zcash_address = { workspace = true, features = ["test-dependencies"] } | ||
zcash_primitives = { workspace = true, features = ["test-dependencies"] } | ||
|
||
[features] | ||
## Enables use of transparent key parts and addresses | ||
transparent-inputs = ["dep:bip32", "zcash_primitives/transparent-inputs"] | ||
transparent-inputs = [ | ||
"dep:bip32", | ||
"transparent/transparent-inputs", | ||
] | ||
|
||
## Enables use of Orchard key parts and addresses | ||
orchard = ["dep:orchard"] | ||
|
@@ -89,7 +92,8 @@ sapling = ["dep:sapling"] | |
test-dependencies = [ | ||
"dep:proptest", | ||
"orchard?/test-dependencies", | ||
"zcash_primitives/test-dependencies", | ||
"sapling?/test-dependencies", | ||
"transparent/test-dependencies", | ||
] | ||
|
||
#! ### Experimental features | ||
|
Oops, something went wrong.