-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (33 loc) · 999 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
35
36
37
38
[package]
name = "tetsy-secp256k1"
version = "0.7.0"
authors = [
"Dawid Ciężarkiewicz <dpc@ucore.info>",
"Andrew Poelstra <apoelstra@wpsoftware.net>",
"Parity Technologies <admin@parity.io>",
]
license = "CC0-1.0"
homepage = "https://github.com/tetcoin/tetsy-secp256k1/"
repository = "https://github.com/tetcoin/tetsy-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 = [ "ECDSA", "secp256k1", "libsecp256k1", "bitcoin", "vapory" ]
readme = "README.md"
build = "build.rs"
[build-dependencies]
cc = "1.0.45"
cfg-if = "0.1.10"
[lib]
name = "secp256k1"
path = "src/lib.rs"
[features]
unstable = []
default = []
dev = ["clippy"]
[dependencies]
arrayvec = "0.5.1"
clippy = { version = "0.0.302", optional = true }
rand = "0.7.2"
[dev-dependencies]
hex-literal = "0.2.1"
rand_core = "0.5.1"