forked from paritytech/libsecp256k1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (33 loc) · 1 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
[package]
name = "tiny-ec"
description = "Pure Rust primitives for libecvrf."
license = "Apache-2.0"
version = "0.1.3"
authors = ["Wei Tang <hi@that.world>", "Chiro Hiro <chiro@orochi.network>"]
repository = "https://github.com/orochi-network/tiny-ec"
keywords = ["crypto", "ECDSA", "ecvrf", "no_std"]
edition = "2018"
resolver = "2"
[dependencies]
tiny-ec-core = { version = "0.3.1", path = "core", default-features = false }
arrayref = "0.3"
digest = "0.9"
typenum = { version = "1.12", optional = true }
[dev-dependencies]
secp256k1-test = { package = "secp256k1", version = "0.20.3", features = [
"rand-std",
"recovery",
] }
clear_on_drop = "0.2"
serde_json = "1.0"
hex = "0.4"
hex-literal = "0.3.3"
[build-dependencies]
libsecp256k1-gen-ecmult = { version = "0.3.0", path = "gen/ecmult" }
libsecp256k1-gen-genmult = { version = "0.3.0", path = "gen/genmult" }
[features]
default = ["std", "static-context"]
std = ["tiny-ec-core/std"]
static-context = []
[workspace]
members = ["./gen/ecmult", "./gen/genmult"]