rust-secp256k1-unsafe-fast/Cargo.toml

48 lines
1.1 KiB
TOML
Raw Normal View History

2014-07-07 05:41:22 +00:00
[package]
name = "secp256k1"
2019-01-18 15:35:44 +00:00
version = "0.12.2"
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"
build = "build.rs"
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]
2018-09-04 14:28:15 +00:00
features = [ "rand", "serde" ]
all-features = true
2018-07-31 15:55:58 +00:00
[build-dependencies]
cc = ">= 1.0.28, <= 1.0.35"
[lib]
name = "secp256k1"
2015-04-09 15:35:38 +00:00
path = "src/lib.rs"
2015-07-28 17:38:01 +00:00
[features]
unstable = []
default = ["std"]
fuzztarget = []
std = []
[dev-dependencies]
rand = "0.6"
2019-04-16 13:35:33 +00:00
rand_core = "0.4"
serde_test = "1.0"
2015-07-28 17:38:01 +00:00
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