-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
63 lines (52 loc) · 1.41 KB
/
Cargo.toml
File metadata and controls
63 lines (52 loc) · 1.41 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
[package]
name = "nklave-server"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
documentation.workspace = true
authors.workspace = true
keywords.workspace = true
categories.workspace = true
readme = "README.md"
description = "Main server binary for Nklave with TLS, metrics, and configuration"
[[bin]]
name = "nklave"
path = "src/main.rs"
[[bin]]
name = "generate-test-keys"
path = "src/bin/generate_test_keys.rs"
[[bin]]
name = "slashing-protection"
path = "src/bin/slashing_protection.rs"
[dependencies]
nklave-core = { workspace = true }
nklave-api = { workspace = true }
nklave-storage = { workspace = true }
# Async runtime
tokio = { workspace = true }
# HTTP framework
axum = { workspace = true }
axum-server = { workspace = true }
rustls-pemfile = { workspace = true }
# Serialization
serde = { workspace = true }
serde_json = { workspace = true }
toml = { workspace = true }
hex = { workspace = true }
# Crypto (for key generation)
sha2 = { workspace = true }
aes = { workspace = true }
ctr = { workspace = true }
scrypt = { workspace = true }
uuid = { workspace = true }
# Error handling
anyhow = { workspace = true }
# Logging/metrics
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
metrics = { workspace = true }
metrics-exporter-prometheus = { workspace = true }
[dev-dependencies]
tempfile = { workspace = true }