rust-secp256k1-unsafe-fast/Cargo.toml

47 lines
1.1 KiB
TOML
Raw Normal View History

2014-07-07 05:41:22 +00:00
[package]
name = "secp256k1"
2018-11-04 13:17:18 +00:00
version = "0.11.4"
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]
2018-07-30 02:53:20 +00:00
cc = "1.0"
[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 = []
fuzztarget = []
[dev-dependencies]
2018-07-30 03:03:20 +00:00
rand = "0.4"
serde_test = "1.0"
2015-07-28 17:38:01 +00:00
2015-03-25 23:57:16 +00:00
[dependencies]
libc = "0.2"
2015-03-25 23:57:16 +00:00
2017-12-19 20:49:01 +00:00
[dependencies.rand]
2018-07-30 03:03:20 +00:00
version = "0.4"
2017-12-19 20:49:01 +00:00
optional = true
[dependencies.serde]
version = "1.0"
optional = true