-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (35 loc) · 1.3 KB
/
Cargo.toml
File metadata and controls
37 lines (35 loc) · 1.3 KB
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
[workspace]
resolver = "2"
members = [
"crypto/tecdsa/cait_sith_keplr",
"crypto/tecdsa/sandbox",
"crypto/tecdsa/cait_sith_keplr_addon/addon",
"crypto/tecdsa/cait_sith_keplr_wasm/wasm",
"crypto/teddsa/frost_core",
"crypto/teddsa/frost_ed25519_keplr",
"crypto/teddsa/frost_rerandomized",
"crypto/teddsa/teddsa_addon/addon",
"crypto/teddsa/frost_ed25519_keplr_wasm/wasm",
"key_share_node/key_share_node_2/core",
"key_share_node/key_share_node_2/pg_interface",
"key_share_node/key_share_node_2/server",
]
[workspace.dependencies]
frost_core = { path = "crypto/teddsa/frost_core", version = "2.2.0", default-features = false }
frost_ed25519_keplr = { path = "crypto/teddsa/frost_ed25519_keplr", version = "2.2.0", default-features = false }
frost_rerandomized = { path = "crypto/teddsa/frost_rerandomized", version = "2.2.0", default-features = false }
cait_sith_keplr = { path = "crypto/tecdsa/cait_sith_keplr", version = "=0.0.2-rc.4" }
criterion = "0.6"
document-features = "0.2.7"
hex = { version = "0.4.3", default-features = false, features = ["alloc"] }
insta = { version = "1.31.0", features = ["yaml"] }
lazy_static = "1.4"
proptest = "1.0"
rand = "0.8"
rand_chacha = "0.3"
rand_core = "0.6"
serde = { version = "1.0", default-features = false, features = [
"derive",
"alloc",
] }
serde_json = "1.0"