-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
143 lines (118 loc) · 2.9 KB
/
Cargo.toml
File metadata and controls
143 lines (118 loc) · 2.9 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
[workspace]
resolver = "3"
members = [
"crates/enigma-core",
"crates/enigma-storage",
"crates/enigma-keys",
"crates/enigma-cli",
"crates/enigma-s3",
"crates/enigma-raft",
"crates/enigma-proxy",
"crates/enigma-web",
"crates/enigma-auth",
]
[workspace.package]
version = "0.1.4"
edition = "2024"
license = "LicenseRef-Enigma-SAL-1.0"
rust-version = "1.85"
[workspace.dependencies]
# Async
tokio = { version = "1", features = ["full"] }
async-trait = "0.1"
# Crypto
aes-gcm = "0.10"
argon2 = "0.5"
sha2 = "0.10"
rand = "0.8"
subtle = "2"
zeroize = { version = "1", features = ["derive"] }
ml-kem = "0.2"
hkdf = "0.12"
# Storage
rusqlite = { version = "0.31", features = ["bundled", "backup"] }
tempfile = "3"
# CLI
clap = { version = "4", features = ["derive", "env"] }
indicatif = "0.17"
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Chunking
fastcdc = "3"
# Compression
zstd = "0.13"
# Error handling
thiserror = "2"
anyhow = "1"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# UUID
uuid = { version = "1", features = ["v7"] }
# Time
chrono = { version = "0.4", features = ["serde"] }
# Config
toml = "0.8"
dirs = "5"
# Cloud SDKs
aws-sdk-s3 = "1"
aws-sdk-secretsmanager = "1"
aws-config = { version = "1", features = ["behavior-version-latest"] }
azure_storage = "0.20"
azure_storage_blobs = "0.20"
google-cloud-storage = "0.22"
# Vault SDKs
azure_security_keyvault_secrets = "0.10"
azure_identity = "0.31"
google-cloud-secretmanager-v1 = "1.4"
google-cloud-gax = "1.6"
# S3 server
s3s = "0.11"
s3s-aws = "0.11"
hyper = { version = "1", features = ["server", "http1", "http2"] }
hyper-util = { version = "0.1", features = ["tokio", "server-auto", "http1", "http2"] }
http = "1"
http-body-util = "0.1"
bytes = "1"
tower = "0.5"
tower-service = "0.3"
pin-project-lite = "0.2"
md-5 = "0.10"
futures = "0.3"
tokio-stream = "0.1"
# TLS
tokio-rustls = "0.26"
rustls-pemfile = "2"
rustls = { version = "0.23", default-features = false, features = ["ring", "std"] }
# Metrics
prometheus = "0.13"
# Web UI
axum = { version = "0.8", features = ["multipart"] }
tower-http = { version = "0.6", features = ["trace", "limit"] }
jsonwebtoken = "9"
rust-embed = "8"
mime_guess = "2"
# Raft
openraft = { version = "0.9", features = ["serde", "storage-v2"] }
tonic = "0.12"
prost = "0.13"
# Base64
base64 = "0.22"
# Hex
hex = "0.4"
# OpenSSL (vendored for cross-compilation)
openssl = { version = "0.10", features = ["vendored"] }
# Internal
enigma-core = { path = "crates/enigma-core" }
enigma-storage = { path = "crates/enigma-storage" }
enigma-keys = { path = "crates/enigma-keys" }
enigma-s3 = { path = "crates/enigma-s3" }
enigma-raft = { path = "crates/enigma-raft" }
enigma-web = { path = "crates/enigma-web" }
enigma-auth = { path = "crates/enigma-auth" }
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true