zcash_encoding 0.1.0

This commit is contained in:
Jack Grigg 2022-05-10 23:16:39 +00:00
parent a27a5428f0
commit 6976d3fe85
4 changed files with 16 additions and 3 deletions

View File

@ -15,7 +15,7 @@ edition = "2018"
bech32 = "0.8"
bs58 = { version = "0.4", features = ["check"] }
f4jumble = { version = "0.1", path = "../f4jumble" }
zcash_encoding = { version = "0.0", path = "../zcash_encoding" }
zcash_encoding = { version = "0.1", path = "../zcash_encoding" }
[dev-dependencies]
assert_matches = "1.3.0"

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] - 2022-05-11
Initial release.

View File

@ -1,7 +1,7 @@
[package]
name = "zcash_encoding"
description = "Binary encodings used throughout the Zcash ecosystem."
version = "0.0.0"
version = "0.1.0"
authors = [
"Jack Grigg <jack@electriccoin.co>",
"Kris Nuttycombe <kris@electriccoin.co>",
@ -11,6 +11,8 @@ repository = "https://github.com/zcash/librustzcash"
readme = "README.md"
license = "MIT OR Apache-2.0"
edition = "2018"
categories = ["cryptography::cryptocurrencies", "encoding"]
keywords = ["zcash"]
[dependencies]
byteorder = "1"

View File

@ -44,7 +44,7 @@ ripemd = { version = "0.1", optional = true }
secp256k1 = { version = "0.21", optional = true }
sha2 = "0.9"
subtle = "2.2.3"
zcash_encoding = { version = "0.0", path = "../components/zcash_encoding" }
zcash_encoding = { version = "0.1", path = "../components/zcash_encoding" }
[dependencies.zcash_note_encryption]
version = "0.1"