44 lines
1.6 KiB
TOML
44 lines
1.6 KiB
TOML
[package]
|
|
name = "bitcoin_hashes"
|
|
version = "0.12.0"
|
|
authors = ["Andrew Poelstra <apoelstra@wpsoftware.net>"]
|
|
license = "CC0-1.0"
|
|
repository = "https://github.com/rust-bitcoin/bitcoin_hashes/"
|
|
documentation = "https://docs.rs/bitcoin_hashes/"
|
|
description = "Hash functions used by the rust-bitcoin eccosystem"
|
|
categories = ["algorithms"]
|
|
keywords = [ "crypto", "bitcoin", "hash", "digest" ]
|
|
readme = "README.md"
|
|
edition = "2018"
|
|
exclude = ["tests", "contrib"]
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["alloc", "internals/std"]
|
|
alloc = ["internals/alloc"]
|
|
schemars = ["actual-schemars", "dyn-clone"]
|
|
serde-std = ["serde/std"]
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[dependencies]
|
|
internals = { path = "../internals", package = "bitcoin-internals" }
|
|
|
|
core2 = { version = "0.3.0", default_features = false, optional = true }
|
|
# Only enable this if you explicitly do not want to use "std", otherwise enable "serde-std".
|
|
serde = { version = "1.0", default-features = false, optional = true }
|
|
# Do NOT use this as a feature! Use the `schemars` feature instead. Can only be used with "std" enabled.
|
|
actual-schemars = { package = "schemars", version = "<=0.8.3", optional = true }
|
|
# Do NOT enable this dependency, this is just to pin dyn-clone (transitive dep from schemars)
|
|
# because 1.0.8 does not build with Rust 1.41.1 (because of useage of `Arc::as_ptr`).
|
|
dyn-clone = { version = "<=1.0.7", default_features = false, optional = true }
|
|
|
|
[dev-dependencies]
|
|
serde_test = "1.0"
|
|
serde_json = "1.0"
|
|
|
|
[target.wasm32-unknown-unknown.dev-dependencies]
|
|
wasm-bindgen-test = "0.3"
|