rust-secp256k1/Cargo.toml

48 lines
981 B
TOML
Raw Normal View History

2014-07-06 22:41:22 -07:00
[package]
name = "secp256k1"
version = "0.8.3"
authors = [ "Dawid Ciężarkiewicz <dpc@ucore.info>",
"Andrew Poelstra <apoelstra@wpsoftware.net>" ]
license = "CC0-1.0"
homepage = "https://github.com/apoelstra/rust-secp256k1/"
repository = "https://github.com/apoelstra/rust-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"
2014-07-06 22:41:22 -07:00
build = "build.rs"
[build-dependencies]
gcc = "0.3"
[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 = []
[dev-dependencies]
2017-12-19 14:40:06 -08:00
serde = "1.0"
serde_json = "1.0"
2017-12-19 12:49:01 -08:00
rand = "0.3"
2017-12-19 14:21:23 -08:00
rustc-serialize = "0.3"
2015-07-28 10:38:01 -07:00
2015-03-25 16:57:16 -07:00
[dependencies]
libc = "0.2"
2015-03-25 16:57:16 -07:00
2017-12-19 12:49:01 -08:00
[dependencies.rand]
version = "0.3"
optional = true
2017-12-19 14:21:23 -08:00
[dependencies.rustc-serialize]
version = "0.3"
optional = true
2017-12-19 14:40:06 -08:00
[dependencies.serde]
version = "1.0"
optional = true