-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (66 loc) · 2.12 KB
/
Cargo.toml
File metadata and controls
74 lines (66 loc) · 2.12 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
[package]
name = "stress-test-generator"
version = "0.1.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
[dependencies]
alloy = { workspace = true }
aws-config = { workspace = true }
aws-sdk-kms = { workspace = true }
aws-sdk-s3 = { version = "1.103.0", default-features = false, features = ["rt-tokio", "default-https-client", "sigv4a"] } # not in workspace
alloy-primitives = { workspace = true }
anyhow = { workspace = true }
bigdecimal = { workspace = true }
clap = { workspace = true }
futures-util = { workspace = true }
hex = { workspace = true }
lru = { workspace = true }
prost = { workspace = true }
rand = { workspace = true }
rayon = { workspace = true }
semver = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
serial_test = { workspace = true }
sha3 = { workspace = true }
strum = { workspace = true }
rustls = { workspace = true }
sqlx = { workspace = true }
testcontainers = { workspace = true }
thiserror = { workspace = true }
tfhe = { workspace = true }
tfhe-versionable = { workspace = true }
tokio = { workspace = true }
tokio-util = { workspace = true }
tonic = { workspace = true }
tonic-build = { workspace = true }
humantime = { workspace = true }
bytesize = { workspace = true }
itertools = "0.13.0" # not in workspace
lazy_static = "1.5.0" # not in workspace
regex = "1.10.6" # not in workspace
csv = "1.3.1" # not in workspace
futures = "0.3.31" # duplicate of futures-util, not in workspace
tracing = { workspace = true }
axum = { workspace = true }
uuid = "1" # not in workspace
tracing-subscriber = { workspace = true }
chrono = { version = "0.4.41", features = ["serde"] }
# local dependencies
fhevm-engine-common = { path = "../fhevm-engine-common" }
scheduler = { path = "../scheduler" }
host-listener= { path = "../host-listener" }
zkproof-worker = { path = "../zkproof-worker" }
test-harness = { path = "../test-harness" }
tfhe-worker = { path = "../tfhe-worker" }
[features]
nightly-avx512 = ["tfhe/nightly-avx512"]
[[bin]]
name = "stress_generator"
path = "src/bin/stress_generator.rs"
[profile.release]
opt-level = 3
lto = "fat"
[lints]
workspace = true