-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (30 loc) · 804 Bytes
/
Cargo.toml
File metadata and controls
36 lines (30 loc) · 804 Bytes
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
[package]
name = "zama"
version = "0.1.0"
edition = "2021"
[dependencies]
frost-dalek = "0.2.3"
curve25519-dalek = "3.2.1" # downgrade to 3.2.1 to match frost-dalek dependency version
clap = { version = "4.0", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_bytes = "0.11.15"
serde_with = "1.11"
sha2 = "0.9.9"
field-offset = "0.3"
bincode = "1.3.3"
rand = "0.7.3"# downgrade to 0.7.3 to match frost-dalek dependency version
hex = "0.4.3"
thiserror = "1.0"
log = "0.4.22"
env_logger = "0.11.5" # For simple console logging setup
tokio = { version = "1.41.0", features = ["full"] }
futures = "0.3.31"
base64 = "0.22.1"
predicates = "3.1.2"
itertools = "0.13.0"
fs2 = "0.4.3"
dotenv = "0.15.0"
[dev-dependencies]
assert_cmd = "2.0"
indoc = "2.0.5"