-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathCargo.toml
More file actions
64 lines (56 loc) · 1.65 KB
/
Cargo.toml
File metadata and controls
64 lines (56 loc) · 1.65 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
[package]
name = "sns-worker"
version = "0.7.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
[dependencies]
# workspace dependencies
aws-config = { workspace = true }
clap = { workspace = true }
hex = { workspace = true }
prometheus = { workspace = true }
prost = { workspace = true }
rayon = { workspace = true }
serde_json = { workspace = true }
sha3 = { workspace = true }
thiserror = { workspace = true }
tfhe = { workspace = true}
tokio = { workspace = true }
tonic = { workspace = true }
tracing = { workspace = true }
tracing-opentelemetry = { workspace = true }
tracing-subscriber = { workspace = true }
anyhow = { workspace = true }
serde = { workspace = true }
sqlx = { workspace = true }
tfhe-versionable = { workspace = true }
tokio-util = { workspace = true }
# opentelemetry support
opentelemetry = { workspace = true }
opentelemetry-otlp = { workspace = true }
opentelemetry_sdk = { workspace = true }
opentelemetry-semantic-conventions = { workspace = true }
humantime = { workspace = true }
bytesize = { workspace = true}
aws-sdk-s3 = { workspace = true }
lru = { workspace = true }
# crates.io dependencies
aligned-vec = "0.6.4"
num-traits = "0.2.19"
futures = "0.3.31"
# local dependencies
fhevm-engine-common = { path = "../fhevm-engine-common" }
[[bin]]
name = "sns_worker"
path = "src/bin/sns_worker.rs"
[features]
gpu = ["tfhe/gpu", "fhevm-engine-common/gpu", "test-harness/gpu"]
test_decrypt_128 = []
test_s3_use_handle_as_key = []
[dev-dependencies]
serial_test = { workspace = true }
test-harness = { path = "../test-harness" }
[dev-dependencies.sns-worker]
path = "."
features = ["test_decrypt_128", "test_s3_use_handle_as_key"]