-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
50 lines (43 loc) · 1.17 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
42
43
44
45
46
47
48
49
50
[package]
name = "wsts"
version = "10.0.0"
edition = "2021"
authors = ["Joey Yandle <[email protected]>"]
license = "Apache-2.0"
description = "Weighted Schnorr Threshold Signatures, based on FROST"
readme = "README.md"
repository = "https://github.com/Trust-Machines/wsts/"
keywords = ["cryptography", "crypto", "frost"]
categories = ["cryptography"]
[features]
default = ["with_p256k1_bindgen"]
with_p256k1_bindgen = ["p256k1/with_bindgen"]
[dependencies]
aes-gcm = "0.10"
bs58 = "0.5"
hashbrown = { version = "0.14", features = ["serde"] }
hex = "0.4.3"
num-traits = "0.2"
polynomial = { version = "0.2.5", features = ["serde"] }
primitive-types = "0.12"
rand_core = "0.6"
p256k1 = { version = "7.1", default-features = false }
serde = { version = "1.0", features = ["derive"] }
sha2 = "0.10"
thiserror = "1.0"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
[dev-dependencies]
criterion = "0.5.1"
[[bench]]
name = "v1_bench"
harness = false
[[bench]]
name = "v2_bench"
harness = false
[lib]
path = "src/lib.rs" # The source file of the target.
crate-type = ["lib"] # The crate types to generate.
[[bin]]
name = "wsts"
path = "src/main.rs"