rust-secp256k1/Cargo.toml

45 lines
1.1 KiB
TOML
Raw Normal View History

2014-07-06 22:41:22 -07:00
[package]
name = "secp256k1"
2019-01-18 07:35:44 -08: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 05:13:13 -07: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 08:55:58 -07:00
# Should make docs.rs show all functions, even those behind non-default features
[package.metadata.docs.rs]
2018-09-04 07:28:15 -07:00
features = [ "rand", "serde" ]
all-features = true
2018-07-31 08:55:58 -07:00
[build-dependencies]
cc = "=1.0.26"
[lib]
name = "secp256k1"
2015-04-09 08:35:38 -07:00
path = "src/lib.rs"
2015-07-28 10:38:01 -07:00
[features]
unstable = []
default = []
fuzztarget = []
[dev-dependencies]
2019-02-11 22:40:53 -08:00
rand = "0.5"
rand_core = "0.4.0"
serde_test = "1.0"
2015-07-28 10:38:01 -07:00
2017-12-19 12:49:01 -08:00
[dependencies.rand]
2019-02-11 22:40:53 -08:00
version = "0.5"
2017-12-19 12:49:01 -08:00
optional = true
[dependencies.serde]
version = "1.0"
optional = true