This repository has been archived by the owner on Oct 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
57 lines (49 loc) · 2.02 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
51
52
53
54
55
56
57
[package]
name = "ice-frost"
version = "0.1.0"
authors = [
"zk Foundation Developers <[email protected]>"
]
edition = "2021"
description = "Modular Static ICE-FROST: Identifiable Cheating Entity Flexible Round-Optimised Threshold Signature"
readme = "README.md"
license = "MIT/Apache-2"
repository = "https://github.com/topos-network/ice-frost"
homepage = "https://github.com/topos-network/ice-frost"
keywords = ["cryptography", "frost", "ice-frost", "signature", "threshold-signature"]
categories = ["cryptography"]
exclude = [ ".gitignore" ]
[package.metadata.docs.rs]
rustdoc-args = ["--html-in-header", "/opt/rustwide/workdir/docs/assets/rustdoc-include-katex-header.html"]
[dependencies]
aead = { version = "0.5", default-features = false, features = ["alloc", "getrandom"]}
ark-secp256k1 = { version = "0.4", default-features = false }
ark-ff = { version = "0.4", default-features = false }
ark-ec = { version = "0.4", default-features = false }
ark-serialize = { version = "0.4", default-features = false, features = ["derive"] }
digest = { version = "0.10", default-features = false, features = ["alloc"] }
rand = { version = "0.8", default-features = false, features = ["alloc", "getrandom", "libc"] }
sha2 = { version = "0.10", default-features = false }
aes-gcm = { version = "0.10", default-features = false, features = ["aes", "alloc", "getrandom", "zeroize"] }
hkdf = { version = "0.12", default-features = false }
zeroize = { version = "1", default-features = false, features = ["alloc", "zeroize_derive"] }
# Include the "js" feature for wasm32-unknown-unknown
[target.'cfg(target_family = "wasm")'.dependencies.getrandom]
version = "0.2"
default-features = false
features = ["js"]
[target.'cfg(not(target_family = "wasm"))'.dependencies.getrandom]
version = "0.2.0"
default-features = false
[dev-dependencies]
criterion = { version = "0.5" }
[[bench]]
name = "dkg"
harness = false
[[bench]]
name = "sign"
harness = false
[features]
default = ["std"]
asm = ["ark-ff/asm", "std"]
std = ["ark-ec/std", "ark-ff/std", "ark-serialize/std"]