-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathCargo.toml
More file actions
82 lines (71 loc) · 1.98 KB
/
Cargo.toml
File metadata and controls
82 lines (71 loc) · 1.98 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
[package]
name = "tfhe-worker"
version = "0.7.0"
default-run = "tfhe_worker"
authors.workspace = true
edition.workspace = true
license.workspace = true
[dependencies]
# workspace dependencies
alloy = { workspace = true }
bigdecimal = { workspace = true }
clap = { workspace = true }
hex = { workspace = true }
prometheus = { workspace = true }
rand = { workspace = true }
serde_json = { workspace = true }
strum = { workspace = true }
sqlx = { workspace = true }
tfhe = { workspace = true }
time = { workspace = true }
tokio = { workspace = true }
tokio-util = { workspace = true }
tracing = { workspace = true }
tracing-opentelemetry = { workspace = true }
tracing-subscriber = { workspace = true }
# opentelemetry support
opentelemetry = { workspace = true }
opentelemetry-otlp = { workspace = true }
opentelemetry_sdk = { workspace = true }
opentelemetry-semantic-conventions = { workspace = true }
chrono = { workspace = true }
# crates.io dependencies
itertools = "0.13.0"
lazy_static = "1.5.0"
uuid = { version = "1", features = ["v4"] }
# local dependencies
fhevm-engine-common = { path = "../fhevm-engine-common" }
scheduler = { path = "../scheduler" }
[features]
nightly-avx512 = ["tfhe/nightly-avx512"]
gpu = ["tfhe/gpu", "scheduler/gpu", "fhevm-engine-common/gpu", "test-harness/gpu"]
bench = []
latency = ["fhevm-engine-common/latency"]
throughput = ["fhevm-engine-common/throughput"]
[dev-dependencies]
criterion = { version = "0.5.1", features = ["async_futures"] }
host-listener = { path = "../host-listener" }
testcontainers = { workspace = true }
test-harness = { path = "../test-harness" }
serde = { workspace = true }
serial_test = { workspace = true }
[[bin]]
name = "tfhe_worker"
path = "src/bin/tfhe_worker.rs"
[[bin]]
name = "utils"
path = "src/bin/utils.rs"
[[bench]]
name = "erc20"
path = "benches/erc20.rs"
harness = false
[[bench]]
name = "synthetics"
path = "benches/synthetics.rs"
harness = false
[[bench]]
name = "dex"
path = "benches/dex.rs"
harness = false
[lints]
workspace = true