-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (35 loc) · 990 Bytes
/
Cargo.toml
File metadata and controls
40 lines (35 loc) · 990 Bytes
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
[package]
name = "zkproof-worker"
version = "0.7.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
[dependencies]
# workspace dependencies
alloy-primitives = { workspace = true }
clap = { workspace = true }
hex = { workspace = true }
lru = { workspace = true }
rand = { workspace = true }
sha3 = { workspace = true }
sqlx = { workspace = true }
tfhe = { workspace = true }
tokio = { workspace = true }
anyhow = { workspace = true }
tokio-util = { workspace = true }
bincode = { workspace = true }
thiserror = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
humantime = { workspace = true }
# local dependencies
fhevm-engine-common = { path = "../fhevm-engine-common" }
# crates.io dependencies
[features]
nightly-avx512 = ["tfhe/nightly-avx512"]
[dev-dependencies]
serial_test = { workspace = true }
test-harness = { path = "../test-harness" }
[[bin]]
name = "zkproof_worker"
path = "src/bin/zkproof_worker.rs"