23 lines
468 B
TOML
23 lines
468 B
TOML
[package]
|
|
name = "zcash_encoding"
|
|
description = "Binary encodings of types used throughout the Zcash ecosystem."
|
|
version = "0.0.0"
|
|
authors = [
|
|
"Kris Nuttycombe <kris@electriccoin.co>",
|
|
]
|
|
homepage = "https://github.com/zcash/librustzcash"
|
|
repository = "https://github.com/zcash/librustzcash"
|
|
readme = "README.md"
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
byteorder = "1"
|
|
nonempty = "0.7"
|
|
|
|
[dev-dependencies]
|
|
proptest = "1"
|
|
|
|
[lib]
|
|
bench = false
|