zcash_note_encryption 0.1.0

This commit is contained in:
Jack Grigg 2021-12-17 15:21:09 +00:00
parent c4cbb2dd74
commit 142a38e792
5 changed files with 14 additions and 4 deletions

View File

@ -23,4 +23,3 @@ codegen-units = 1
orchard = { git = "https://github.com/zcash/orchard.git", rev = "4b0b32275fe941b28cdfe632d2748453e6c32fbb" }
incrementalmerkletree = { git = "https://github.com/zcash/incrementalmerkletree.git", rev = "b7bd6246122a6e9ace8edb51553fbf5228906cbb" }
zcash_encoding = { path = "components/zcash_encoding" }
zcash_note_encryption = { path = "components/zcash_note_encryption" }

View File

@ -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] - 2021-12-17
Initial release.

View File

@ -1,7 +1,7 @@
[package]
name = "zcash_note_encryption"
description = "Note encryption for Zcash transactions"
version = "0.0.0"
version = "0.1.0"
authors = [
"Jack Grigg <jack@electriccoin.co>",
"Kris Nuttycombe <kris@electriccoin.co>"

View File

@ -28,7 +28,7 @@ protobuf = "2.20"
rand_core = "0.6"
subtle = "2.2.3"
time = "0.2"
zcash_note_encryption = { version = "0.0", path = "../components/zcash_note_encryption" }
zcash_note_encryption = { version = "0.1", path = "../components/zcash_note_encryption" }
zcash_primitives = { version = "0.5", path = "../zcash_primitives" }
[build-dependencies]

View File

@ -47,7 +47,7 @@ subtle = "2.2.3"
zcash_encoding = { version = "0.0", path = "../components/zcash_encoding" }
[dependencies.zcash_note_encryption]
version = "0.0"
version = "0.1"
path = "../components/zcash_note_encryption"
features = ["pre-zip-212"]