librustzcash/components/equihash/Cargo.toml

30 lines
575 B
TOML

[package]
name = "equihash"
description = "The Equihash Proof-of-Work function"
version = "0.2.0"
authors = ["Jack Grigg <jack@z.cash>"]
homepage = "https://github.com/zcash/librustzcash"
repository = "https://github.com/zcash/librustzcash"
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.56.1"
[features]
default = []
## Builds the C++ tromp solver and Rust FFI layer.
solver = ["dep:cc"]
[dependencies]
blake2b_simd = "1"
byteorder = "1"
[build-dependencies]
cc = { version = "1", optional = true }
[dev-dependencies]
hex = "0.4"
[lib]
bench = false