forked from ETCDEVTeam/rust-secp256k1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (30 loc) · 994 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "secp256k1-plus"
version = "0.5.7"
authors = [ "Dawid Ciężarkiewicz <[email protected]>",
"Andrew Poelstra <[email protected]>" ]
license = "CC0-1.0"
homepage = "https://github.com/arkpar/rust-secp256k1/"
repository = "https://github.com/arkpar/rust-secp256k1/"
documentation = "https://www.wpsoftware.net/rustdoc/secp256k1/"
description = "Fork of 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"
[build-dependencies]
gcc = "0.3"
[lib]
name = "secp256k1"
path = "src/lib.rs"
[features]
unstable = []
default = ["singleton"]
singleton = ["lazy_static"]
dev = ["clippy"]
[dependencies]
arrayvec = "0.3"
clippy = { version = "0.0", optional = true }
rand = "0.3"
libc = "0.2"
rustc-serialize = "0.3"
lazy_static = { version = "0.2", optional = true }