zip32/Cargo.toml

27 lines
585 B
TOML
Raw Permalink Normal View History

2018-07-10 15:23:02 -07:00
[package]
name = "zip32"
2024-03-14 15:19:43 -07:00
version = "0.1.1"
2018-07-10 15:23:02 -07:00
authors = [
"Jack Grigg <jack@electriccoin.co>",
"Kris Nuttycombe <kris@electriccoin.co>",
2018-07-10 15:23:02 -07:00
]
2023-12-05 10:22:49 -08:00
description = "Common types for implementing shielded hierarchical deterministic wallets"
2018-07-10 15:23:02 -07:00
documentation = "https://docs.rs/zip32/"
2023-12-05 10:22:49 -08:00
homepage = "https://github.com/zcash/zip32"
repository = "https://github.com/zcash/zip32"
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.60"
2018-07-10 15:23:02 -07:00
[dependencies]
blake2b_simd = "1"
memuse = "0.2.1"
subtle = "2.2.3"
2018-07-10 17:28:10 -07:00
[dev-dependencies]
assert_matches = "1.5"
2023-12-05 11:03:43 -08:00
[features]
default = ["std"]
std = []