-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (51 loc) · 1.44 KB
/
Cargo.toml
File metadata and controls
58 lines (51 loc) · 1.44 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
[package]
name = "fhevm-engine-common"
version = "0.6.1"
authors.workspace = true
edition.workspace = true
license.workspace = true
[dependencies]
# workspace dependencies
anyhow = { workspace = true }
alloy = { workspace = true, features = ["providers", "provider-ws"] }
alloy-provider = { workspace = true }
bigdecimal = { workspace = true }
bincode = { workspace = true }
hex = { workspace = true }
lru = { workspace = true }
prost = { workspace = true }
rand = { workspace = true }
serde = { workspace = true }
sha3 = { workspace = true }
strum = { workspace = true }
sqlx = {workspace = true, features = ["bigdecimal"]}
tfhe = { workspace = true }
tonic = { workspace = true }
tokio = { workspace = true }
tracing = { workspace = true }
bytesize = { workspace = true}
tokio-util = { workspace = true}
axum = { workspace = true}
serde_json = { workspace = true}
http = {workspace = true}
thiserror = { workspace = true }
prometheus = { workspace = true }
# crates.io dependencies
lazy_static = "1.5.0"
rand_chacha = "0.3.1"
futures = "0.3.31"
# opentelemetry support
opentelemetry = { workspace = true }
opentelemetry-otlp = { workspace = true }
opentelemetry_sdk = { workspace = true }
opentelemetry-semantic-conventions = { workspace = true }
[features]
nightly-avx512 = ["tfhe/nightly-avx512"]
gpu = ["tfhe/gpu"]
latency = []
throughput = []
[build-dependencies]
tonic-build = { workspace = true }
[[bin]]
name = "generate-keys"
path = "src/bin/generate_keys.rs"