rust-secp256k1-unsafe-fast/Cargo.toml

63 lines
2.0 KiB
TOML
Raw Normal View History

2014-07-07 05:41:22 +00:00
[package]
name = "secp256k1"
2021-06-10 14:46:30 +00:00
version = "0.20.3"
authors = [ "Dawid Ciężarkiewicz <dpc@ucore.info>",
"Andrew Poelstra <apoelstra@wpsoftware.net>" ]
license = "CC0-1.0"
homepage = "https://github.com/rust-bitcoin/rust-secp256k1/"
repository = "https://github.com/rust-bitcoin/rust-secp256k1/"
2018-07-09 12:13:13 +00:00
documentation = "https://docs.rs/secp256k1/"
description = "Rust wrapper library for Pieter Wuille's `libsecp256k1`. Implements ECDSA and BIP 340 signatures for the SECG elliptic curve group secp256k1 and related utilities."
keywords = [ "crypto", "ECDSA", "secp256k1", "libsecp256k1", "bitcoin" ]
readme = "README.md"
autoexamples = false # Remove when edition 2018 https://github.com/rust-lang/cargo/issues/5330
2018-07-31 15:55:58 +00:00
# Should make docs.rs show all functions, even those behind non-default features
[package.metadata.docs.rs]
features = [ "rand", "rand-std", "serde", "recovery" ]
2018-07-31 15:55:58 +00:00
2015-07-28 17:38:01 +00:00
[features]
2020-03-24 13:20:18 +00:00
unstable = ["recovery", "rand-std"]
default = ["std"]
2019-10-21 12:15:19 +00:00
std = ["secp256k1-sys/std"]
# allow use of Secp256k1::new and related API that requires an allocator
alloc = []
2019-08-22 00:16:11 +00:00
rand-std = ["rand/std"]
2019-10-21 12:15:19 +00:00
recovery = ["secp256k1-sys/recovery"]
lowmemory = ["secp256k1-sys/lowmemory"]
global-context = ["std", "rand-std", "global-context-less-secure"]
global-context-less-secure = []
2019-10-28 21:21:47 +00:00
2019-10-21 12:15:19 +00:00
[dependencies]
2021-06-18 21:33:37 +00:00
secp256k1-sys = { version = "0.4.1", default-features = false, path = "./secp256k1-sys" }
bitcoin_hashes = { version = "0.10", optional = true }
2020-08-27 19:58:00 +00:00
rand = { version = "0.6", default-features = false, optional = true }
serde = { version = "1.0", default-features = false, optional = true }
[dev-dependencies]
2019-11-20 14:44:53 +00:00
rand = "0.6"
rand_core = "0.4"
serde_test = "1.0"
bitcoin_hashes = "0.10"
2015-07-28 17:38:01 +00:00
[target.wasm32-unknown-unknown.dev-dependencies]
wasm-bindgen-test = "0.3"
rand = { version = "0.6", features = ["wasm-bindgen"] }
[[example]]
name = "sign_verify_recovery"
required-features = ["recovery"]
[[example]]
name = "sign_verify"
[[example]]
name = "generate_keys"
2019-11-18 01:04:11 +00:00
required-features = ["rand"]
[workspace]
members = ["secp256k1-sys"]
2021-01-11 19:15:10 +00:00
exclude = ["no_std_test"]