Skip to content

Commit 782ab8b

Browse files
committed
Update Cargo.toml
1 parent 5989e2f commit 782ab8b

File tree

1 file changed

+28
-27
lines changed

1 file changed

+28
-27
lines changed

Cargo.toml

Lines changed: 28 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -5,48 +5,49 @@ edition = "2021"
55

66

77
[dependencies]
8-
# Core async/runtime
9-
tokio = { version = "1.45", features = ["full"] }
10-
async-trait = "0.1.88"
11-
futures = "0.3.31"
12-
13-
# Web framework & API
148
rocket = { version = "0.5.1", features = ["json", "uuid"] }
15-
rocket-multipart-form-data = "0.10.7"
16-
reqwest = { version = "0.12", features = ["json", "native-tls-vendored", "rustls-tls"] }
17-
18-
# Serialization
19-
serde = { version = "1.0", features = ["derive", "rc"] }
20-
serde_json = "1.0"
9+
uuid = { version = "1.18.0", features = ["v4", "serde"] }
10+
tokio = { version = "1.47.1", features = ["full"] }
11+
serde = { version = "1.0.219", features = ["derive", "rc"] }
2112
serde_json5 = "0.2.1"
13+
serde_json = "1.0.142"
14+
async-trait = "0.1.89"
15+
reqwest = { version = "0.12.23", features = ["json", "native-tls-vendored", "rustls-tls"] }
16+
log = "0.4.27"
17+
env_logger = "0.11.8"
18+
thiserror = "2.0.14"
19+
parking_lot = "0.12.4"
20+
chrono = { version = "0.4.41", features = ["serde"] }
21+
futures = "0.3.31"
22+
colored = "3.0.0"
23+
anyhow = "1.0.99"
24+
lazy_static = "1.5.0"
25+
rocket-multipart-form-data = "0.10.7"
2226

2327
# Database
24-
mysql = "26.0.0"
28+
mysql = "26.0.1"
2529
sqlx = { version = "0.8.6", features = ["runtime-tokio-rustls", "mysql", "chrono", "uuid"] }
2630
clickhouse = { version = "0.13.3"}
2731
libomni = { path = "../LibOmni" }
2832
lighthouse = { git = "https://github.com/OmniCloudOrg/Lighthouse", features = ["metrics-persistence", "predictive-scaling"], rev = "de72b5365bdc1a28e89ffbf06b3c92957ad3403d"}
2933

3034
# Crypto & Security
3135
sha2 = "0.10.9"
32-
rand = "0.9.1"
36+
rand = "0.9.2"
3337
hex = "0.4.3"
34-
jsonwebtoken = "9.3.1"
35-
36-
# Utilities
37-
anyhow = "1.0.98"
38-
thiserror = "2.0.12"
39-
colored = "3.0.0"
40-
lazy_static = "1.5.0"
4138
once_cell = "1.21.3"
4239
dotenv = { version = "0.15.0" }
43-
parking_lot = "0.12.4"
44-
chrono = { version = "0.4.41", features = ["serde"] }
45-
uuid = { version = "1.17.0", features = ["v4", "serde"] }
4640
tracing = { version = "0.1.41", features = ["log"] }
47-
env_logger = "0.11.8"
48-
log = "0.4.27"
4941
hadris-iso = "0.0.2"
5042
ssh2 = { version = "0.9.5" }
5143
paxakos = "0.13.0"
52-
rust_decimal = "1.37.1"
44+
jsonwebtoken = "9.3.1"
45+
rust_decimal = "1.37.2"
46+
47+
[profile.dev]
48+
codegen-units = 32
49+
incremental = true
50+
debug-assertions = false
51+
overflow-checks = false
52+
opt-level = 0
53+
lto = "thin"

0 commit comments

Comments
 (0)