-
Notifications
You must be signed in to change notification settings - Fork 50
/
Cargo.toml
41 lines (35 loc) · 1.11 KB
/
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
35
36
37
38
39
40
41
[package]
name = "grin_secp256k1zkp"
version = "0.7.14"
authors = [ "Grin Developers <[email protected]>",
"Dawid Ciężarkiewicz <[email protected]>",
"Andrew Poelstra <[email protected]>" ]
license = "CC0-1.0"
homepage = "https://grin.mw"
repository = "https://github.com/mimblewimble/rust-secp256k1-zkp/"
description = "Grin's fork with Zero-Knowledge extensions of Rust bindings for Pieter Wuille's `libsecp256k1` library. Implements ECDSA for the SECG elliptic curve group secp256k1 and related utilities."
keywords = [ "crypto", "secp256k1", "grin", "bitcoin", "zero-knowledge" ]
readme = "README.md"
edition = "2018"
build = "build.rs"
[build-dependencies]
cc = "1.0"
[lib]
name = "secp256k1zkp"
path = "src/lib.rs"
[features]
unstable = []
default = []
bullet-proof-sizing = []
dev = ["clippy"]
[dependencies]
arrayvec = "0.7"
clippy = {version = "0.0", optional = true}
rand = "0.5"
libc = "0.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
zeroize = { version = "1.1", features = ["zeroize_derive"] }
[dev-dependencies]
chrono = "0.4.5"
rand_core = "0.2"