zcash_keys 0.1.0

This commit is contained in:
Jack Grigg 2024-03-01 01:14:34 +00:00
parent d0c380114a
commit 3135c31d1a
4 changed files with 5 additions and 3 deletions

2
Cargo.lock generated
View File

@ -3123,7 +3123,7 @@ dependencies = [
[[package]]
name = "zcash_keys"
version = "0.0.0"
version = "0.1.0"
dependencies = [
"bech32",
"bls12_381",

View File

@ -31,7 +31,7 @@ equihash = { version = "0.2", path = "components/equihash" }
zcash_address = { version = "0.3", path = "components/zcash_address" }
zcash_client_backend = { version = "0.10", path = "zcash_client_backend" }
zcash_encoding = { version = "0.2", path = "components/zcash_encoding" }
zcash_keys = { version = "0.0", path = "zcash_keys" }
zcash_keys = { version = "0.1", path = "zcash_keys" }
zcash_note_encryption = "0.4"
zcash_primitives = { version = "0.14", path = "zcash_primitives", default-features = false }
zcash_proofs = { version = "0.14", path = "zcash_proofs", default-features = false }

View File

@ -5,6 +5,8 @@ and this library adheres to Rust's notion of
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
## [0.1.0] - 2024-03-01
The entries below are relative to the `zcash_client_backend` crate as of
`zcash_client_backend 0.10.0`.

View File

@ -1,7 +1,7 @@
[package]
name = "zcash_keys"
description = "Zcash key and address management"
version = "0.0.0"
version = "0.1.0"
authors = [
"Jack Grigg <jack@z.cash>",
"Kris Nuttycombe <kris@electriccoin.co>"