2014-07-07 05:41:22 +00:00
[ package ]
2015-03-25 22:20:44 +00:00
name = "secp256k1"
2015-12-20 19:47:53 +00:00
version = "0.5.4"
2014-09-01 03:26:02 +00:00
authors = [ "Dawid Ciężarkiewicz <dpc@ucore.info>" ,
2015-05-04 15:33:53 +00:00
"Andrew Poelstra <apoelstra@wpsoftware.net>" ]
2015-05-04 15:26:45 +00:00
license = "CC0-1.0"
homepage = "https://github.com/apoelstra/rust-secp256k1/"
repository = "https://github.com/apoelstra/rust-secp256k1/"
documentation = "https://www.wpsoftware.net/rustdoc/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-07 05:41:22 +00:00
2015-10-26 15:21:01 +00:00
build = "build.rs"
[ build-dependencies ]
gcc = "0.3"
2014-08-18 01:55:07 +00:00
[ lib ]
2015-03-25 22:20:44 +00:00
name = "secp256k1"
2015-04-09 15:35:38 +00:00
path = "src/lib.rs"
2014-09-01 03:26:02 +00:00
2015-07-28 17:38:01 +00:00
[ features ]
unstable = [ ]
2015-12-20 02:19:45 +00:00
default = [ ]
dev = [ "clippy" ]
2015-07-28 17:38:01 +00:00
2015-03-25 23:57:16 +00:00
[ dependencies ]
2015-07-28 16:03:10 +00:00
arrayvec = "0.3"
2015-12-20 02:19:45 +00:00
clippy = { version = "0.0" , optional = true }
2015-05-04 15:26:45 +00:00
rand = "0.3"
libc = "0.1"
rustc-serialize = "0.3"
2015-09-20 17:52:46 +00:00
serde = "0.6"
serde_json = "0.6"
2015-03-25 23:57:16 +00:00