rust-secp256k1-unsafe-fast/Cargo.toml

37 lines
871 B
TOML
Raw Normal View History

2014-07-07 05:41:22 +00:00
[package]
name = "secp256k1"
2018-06-04 19:37:50 +00:00
version = "0.9.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 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"
2014-07-07 05:41:22 +00:00
build = "build.rs"
[build-dependencies]
gcc = "0.3"
[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]
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]
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