rust-secp256k1-unsafe-fast/Cargo.toml

78 lines
2.2 KiB
TOML
Raw Normal View History

2014-07-07 05:41:22 +00:00
[package]
name = "secp256k1"
2020-08-26 20:26:14 +00:00
version = "0.18.0"
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 bindings for Pieter Wuille's `libsecp256k1` library. Implements ECDSA 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]
2019-10-28 20:31:57 +00:00
features = [ "rand", "rand-std", "serde", "recovery", "endomorphism" ]
2018-07-31 15:55:58 +00:00
[lib]
name = "secp256k1"
2015-04-09 15:35:38 +00:00
path = "src/lib.rs"
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"]
2019-08-22 00:16:11 +00:00
rand-std = ["rand/std"]
2019-10-21 12:15:19 +00:00
recovery = ["secp256k1-sys/recovery"]
endomorphism = ["secp256k1-sys/endomorphism"]
lowmemory = ["secp256k1-sys/lowmemory"]
global-context = ["std", "rand"]
2019-10-28 21:21:47 +00:00
# Use this feature to not compile the bundled libsecp256k1 C symbols,
# but use external ones. Use this only if you know what you are doing!
external-symbols = ["secp256k1-sys/external-symbols"]
2019-10-28 21:21:47 +00:00
# Do not use this feature! HAZMAT. (meant for Fuzzing only. this is *BROKEN CRYPTOGRAPHY*)
2019-10-21 12:15:19 +00:00
fuzztarget = ["secp256k1-sys/fuzztarget"]
[dependencies]
2020-08-26 17:40:01 +00:00
secp256k1-sys = { version = "0.2.0", default-features = false, path = "./secp256k1-sys" }
[dev-dependencies]
2019-11-20 14:44:53 +00:00
rand = "0.6"
rand_core = "0.4"
serde_test = "1.0"
bitcoin_hashes = "0.7"
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"] }
[dependencies.bitcoin_hashes]
version = "0.7"
optional = true
2017-12-19 20:49:01 +00:00
[dependencies.rand]
version = "0.6"
2017-12-19 20:49:01 +00:00
optional = true
default-features = false
[dependencies.serde]
version = "1.0"
optional = true
default-features = false
[[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"]