-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathCargo.toml
More file actions
114 lines (109 loc) · 2.79 KB
/
Cargo.toml
File metadata and controls
114 lines (109 loc) · 2.79 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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
[workspace]
resolver = "2"
members = [
"tfhe-worker",
"tfhe-dispatcher",
"tfhe-compute-node",
"fhevm-engine-common",
"host-listener",
"gw-listener",
"sns-worker",
"transaction-sender",
"zkproof-worker",
"test-harness",
"stress-test-generator",
]
[workspace.package]
authors = ["Zama"]
edition = "2021"
license = "BSD-3-Clause-Clear"
[workspace.dependencies]
alloy = { version = "1.1.2", default-features = false, features = [
"essentials",
"std",
"reqwest-rustls-tls",
"provider-anvil-api",
"provider-ws",
"signer-aws",
] }
alloy-provider = { version = "1.1.2", default-features = false, features = [
"reqwest",
"reqwest-rustls-tls",
"ws",
"anvil-node",
] }
alloy-primitives = "1.5.2"
async-trait = "0.1.88"
axum = "0.7"
tower-http = { version = "0.5", features = ["trace"] }
anyhow = "1.0.98"
aws-config = "1.8.5"
aws-credential-types = "1.2.6"
aws-sdk-kms = { version = "1.68.0", default-features = false }
aws-sdk-s3 = { version = "1.103.0", features = ["test-util"] }
bigdecimal = "0.4.8"
clap = { version = "4.5.38", features = ["derive"] }
daggy = "0.8.1"
foundry-compilers = { version = "0.19.1", features = ["svm-solc"] }
futures-util = "0.3.31"
hex = "0.4.3"
lru = "0.13.0"
opentelemetry = "0.29.1"
opentelemetry-otlp = { version = "0.29.0", features = ["grpc-tonic"] }
opentelemetry_sdk = { version = "0.29.0", features = ["rt-tokio"] }
opentelemetry-semantic-conventions = "0.29.0"
prometheus = "0.14.0"
prost = "0.13.5"
rand = "0.9.1"
rayon = "1.11.0"
reqwest = { version = "0.12.20", default-features = false, features = ["rustls-tls"] }
rustls = { version = "0.23", features = ["aws-lc-rs"] }
semver = "1.0.26"
serde = "1.0.225"
serde_json = "1.0.140"
serial_test = "3.2.0"
sha3 = "0.10.8"
strum = { version = "0.26.3", features = ["derive"] }
sqlx = { version = "0.8.6", default-features = false, features = [
"macros",
"migrate",
"runtime-tokio",
"time",
"postgres",
"uuid",
"chrono"
] }
testcontainers = "0.24.0"
thiserror = "2.0.12"
tfhe = { version = "=1.5.1", features = [
"boolean",
"shortint",
"integer",
"zk-pok",
"experimental-force_fft_algo_dif4",
] }
tfhe-versionable = "=0.6.2"
tfhe-zk-pok = "=0.8.0"
time = "0.3.43"
tokio = { version = "1.45.0", features = ["full"] }
tokio-util = "0.7.15"
tonic = { version = "0.12.3", features = ["server"] }
tonic-build = "0.12.3"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.20", features = ["fmt", "json"] }
tracing-test = "0.2.5"
union-find = "0.4.3"
humantime = "2.2.0"
bytesize = "2.0.1"
http = "1.3.1"
chrono = { version = "0.4.41", features = ["serde"] }
[profile.dev.package.tfhe]
overflow-checks = false
[profile.release]
opt-level = 3
lto = "fat"
[profile.local]
inherits = "release"
opt-level = 1
lto = false
codegen-units = 16