-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (44 loc) · 1.23 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
[package]
name = "caring"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-backtrace = "0.2.6"
async-trait = "0.1.80"
bincode = "1.3.3"
derive_more = "0.99.17"
digest = "0.10.7"
ff = { version = "0.13.0", features = ["derive"] }
futures = "0.3.28"
futures-concurrency = "7.6.0"
group = "0.13.0"
itertools = "0.13"
num-traits = "0.2.16"
overload = "0.1.1"
rand = "0.8.5"
rand_chacha = "0.3.1"
rayon = "1.8.0"
serde = { version = "1.0.188", features = ["derive"] }
thiserror = "1.0.50"
tokio = { version = "1.32.0", features = ["full"] }
tokio-util = { version = "0.7.9", features = ["io", "net", "io-util", "codec", "full"] }
tracing = { version = "0.1.40", features = ["max_level_debug"]}
tracing-serde = "0.1.3"
[dev-dependencies]
tracing-subscriber = "0.3.18"
tracing-forest = { version = "0.1.6", features = ["full"] }
test-log = { version = "0.2.16", features = ["trace"]}
serde_json = "1.0.121"
tempfile = "3.10.1"
tokio-test = "0.4.4"
curve25519-dalek = { version = "4.1.3", features = ["group", "serde"] }
sha2 = "0.10.8"
[features]
rayon = []
test = []
[profile.release]
lto = true
codegen-units = 1
panic = "unwind"