-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
80 lines (73 loc) · 1.75 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[package]
name = "mpc"
version = "0.1.0"
edition = "2021"
[dependencies]
async-trait = "0.1.77"
aws-config = "1.1.4"
aws-sdk-sqs = "1.12.0"
axum = "0.7.4"
base64 = "0.21.7"
bitvec = "1"
bytemuck = { version = "1.14.1", features = ["derive"] }
clap = { version = "4.4.18", features = ["derive", "env"] }
color-eyre = "0.6.3"
config = "0.14.0"
criterion = "0.5.1"
dotenvy = "0.15.7"
eyre = "0.6.12"
futures = "0.3.30"
hex = { version = "0.4.3", features = ["serde"] }
humantime-serde = "1.1.1"
indicatif = "0.17.7"
indoc = "2.0.4"
itertools = "0.12.0"
metrics = "0.22.1"
metrics-exporter-statsd = "0.7"
# TODO: only include this for migrate-codes bin
mongodb = "2.8.1"
ordered-float = "4.2.0"
rand = "0.8.5"
rayon = "1.8.1"
reqwest = { version = "0.11.24", features = ["json"] }
serde = { version = "1.0.195", features = ["derive"] }
serde_json = "1.0.111"
sqlx = { version = "0.8", features = [
"runtime-tokio-native-tls",
"any",
"postgres",
"chrono",
] }
telemetry-batteries = { git = "https://github.com/worldcoin/telemetry-batteries.git", rev = "901ea26e478c81e10d5d4355ac628ab7b15afca7" }
tinytemplate = "1.2.1"
tokio = { version = "1.35.1", features = ["macros"] }
toml = "0.8.9"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
url = "2.5.0"
[dev-dependencies]
config = "0.14.0"
float_eq = "1.0.1"
proptest = "1.4.0"
serial_test = "3.1.1"
similar-asserts = "1.5.0"
test-case = "3.3.1"
testcontainers = "0.15"
testcontainers-modules = { version = "0.3", features = [
"postgres",
"localstack",
] }
[[bin]]
name = "mpc-node"
path = "bin/mpc_node.rs"
[[bin]]
name = "utils"
path = "bin/utils/utils.rs"
[[bin]]
name = "migrate-codes"
path = "bin/migrate-codes/migrate.rs"
[[bench]]
name = "rotation_comparison"
harness = false
[profile.release]
panic = "abort"