2014-07-07 05:41:22 +00:00
[ package ]
2015-03-25 22:20:44 +00:00
name = "secp256k1"
2018-05-22 09:34:04 +00:00
version = "0.9.1"
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"
2018-03-05 19:42:39 +00:00
homepage = "https://github.com/rust-bitcoin/rust-secp256k1/"
repository = "https://github.com/rust-bitcoin/rust-secp256k1/"
documentation = "https://docs.rs/secp256k1/0.8.4/secp256k1/"
2015-05-04 15:26:45 +00:00
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 = [ ]
2018-03-19 03:16:48 +00:00
fuzztarget = [ ]
2017-12-19 20:36:46 +00:00
[ dev-dependencies ]
2017-12-19 20:49:01 +00:00
rand = "0.3"
2015-07-28 17:38:01 +00:00
2015-03-25 23:57:16 +00:00
[ dependencies ]
2016-10-10 13:12:12 +00:00
libc = "0.2"
2015-03-25 23:57:16 +00:00
2017-12-19 20:49:01 +00:00
[ dependencies . rand ]
version = "0.3"
optional = true