zcash_primitives 0.1.0

This commit is contained in:
Jack Grigg
2019-10-08 16:07:30 +13:00
parent 25558893ab
commit 8b08528bb0
2 changed files with 14 additions and 7 deletions

8
Cargo.lock generated
View File

@@ -368,7 +368,7 @@ dependencies = [
"libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
"pairing 0.15.0", "pairing 0.15.0",
"rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
"zcash_primitives 0.0.0", "zcash_primitives 0.1.0",
"zcash_proofs 0.0.0", "zcash_proofs 0.0.0",
] ]
@@ -609,12 +609,12 @@ dependencies = [
"pairing 0.15.0", "pairing 0.15.0",
"rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
"rand_xorshift 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand_xorshift 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"zcash_primitives 0.0.0", "zcash_primitives 0.1.0",
] ]
[[package]] [[package]]
name = "zcash_primitives" name = "zcash_primitives"
version = "0.0.0" version = "0.1.0"
dependencies = [ dependencies = [
"aes 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "aes 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
"blake2b_simd 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)", "blake2b_simd 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -646,7 +646,7 @@ dependencies = [
"pairing 0.15.0", "pairing 0.15.0",
"rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
"rand_xorshift 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand_xorshift 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"zcash_primitives 0.0.0", "zcash_primitives 0.1.0",
] ]
[metadata] [metadata]

View File

@@ -1,10 +1,14 @@
[package] [package]
name = "zcash_primitives" name = "zcash_primitives"
version = "0.0.0" description = "Rust implementations of the Zcash primitives"
version = "0.1.0"
authors = [ authors = [
"Jack Grigg <jack@z.cash>", "Jack Grigg <jack@z.cash>",
] ]
homepage = "https://github.com/zcash/librustzcash"
repository = "https://github.com/zcash/librustzcash"
readme = "README.md" readme = "README.md"
license = "MIT OR Apache-2.0"
edition = "2018" edition = "2018"
[dependencies] [dependencies]
@@ -13,12 +17,12 @@ blake2b_simd = "0.5"
blake2s_simd = "0.5" blake2s_simd = "0.5"
byteorder = "1" byteorder = "1"
crypto_api_chachapoly = "0.2.1" crypto_api_chachapoly = "0.2.1"
ff = { path = "../ff" } ff = { version = "0.5.0", path = "../ff" }
fpe = "0.2" fpe = "0.2"
hex = "0.3" hex = "0.3"
lazy_static = "1" lazy_static = "1"
log = "0.4" log = "0.4"
pairing = { path = "../pairing" } pairing = { version = "0.15.0", path = "../pairing" }
rand = "0.7" rand = "0.7"
rand_core = "0.5.1" rand_core = "0.5.1"
sha2 = "0.8" sha2 = "0.8"
@@ -26,3 +30,6 @@ sha2 = "0.8"
[dev-dependencies] [dev-dependencies]
hex-literal = "0.2" hex-literal = "0.2"
rand_xorshift = "0.2" rand_xorshift = "0.2"
[badges]
maintenance = { status = "actively-developed" }