-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
42 lines (37 loc) · 1.15 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
[package]
name = "cait-sith"
description = "Threshold ECDSA via Triples"
repository = "https://github.com/cronokirby/cait-sith"
version = "0.8.0"
edition = "2021"
license = "MIT"
[dependencies]
auto_ops = "0.3.0"
ck-meow = "0.1.0"
digest = "0.10.7"
ecdsa = { version = "0.16.8", features = ["digest", "hazmat"] }
elliptic-curve = { version = "0.13.5", features = ["serde"] }
event-listener = "2.5.3"
k256 = { version = "0.13.1", features = ["sha256", "ecdsa", "serde"], optional = true }
magikitten = "0.2.0"
rand_core = { version = "0.6.4", features = ["getrandom"] }
rmp-serde = "1.1.2"
serde = { version = "1.0.175", features = ["derive"] }
smol = "1.3.0"
subtle = "2.5.0"
[dev-dependencies]
criterion = "0.4"
easy-parallel = "3.2.0"
haisou-chan = { git = "https://github.com/cronokirby/haisou-chan", rev = "d28c46e51acfcb818236caae293f6e56dff41ad2" }
structopt = "0.3.26"
k256 = { version = "0.13.0", features = ["sha256", "ecdsa", "serde"], optional = false }
[[bench]]
name = "protocols"
harness = false
required-features = ["k256"]
[features]
k256 = ["dep:k256"]
[[example]]
name = "network-benches"
path = "examples/network-benches.rs"
required-features = ["k256"]