From cc8074a5b1299aed3fa7fbf0e0c66f1c0065a08b Mon Sep 17 00:00:00 2001 From: phoenix Date: Tue, 7 Jul 2026 17:13:29 -0400 Subject: [PATCH] Removing hyper, rand, once_cell dependencies --- Cargo.lock | 3 --- Cargo.toml | 3 --- 2 files changed, 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0d58610..af26c55 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -766,12 +766,9 @@ dependencies = [ "argon2", "axum", "http-body-util", - "hyper", "icarus_envy", "icarus_models", "josekit", - "once_cell", - "rand 0.10.1", "serde", "serde_json", "sqlx", diff --git a/Cargo.toml b/Cargo.toml index a398a33..5bdb5b4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,11 +12,9 @@ tokio = { version = "1.52.3", features = ["rt-multi-thread"] } tracing-subscriber = { version = "0.3.23" } tower = { version = "0.5.3", features = ["full"] } tower-http = { version = "0.7.0", features = ["cors"] } -hyper = { version = "1.9.0" } sqlx = { version = "0.8.6", features = ["postgres", "runtime-tokio-native-tls", "time", "uuid"] } uuid = { version = "1.23.1", features = ["v4", "serde"] } argon2 = { version = "0.5.3", features = ["std"] } # Use the latest 0.5.x version -rand = { version = "0.10.1" } time = { version = "0.3.47", features = ["macros", "serde"] } josekit = { version = "0.10.3" } utoipa = { version = "5.5.0", features = ["axum_extras"] } @@ -27,4 +25,3 @@ icarus_envy = { git = "ssh://git@git.kundeng.us/phoenix/icarus_envy.git", tag = [dev-dependencies] http-body-util = { version = "0.1.3" } url = { version = "2.5.8" } -once_cell = { version = "1.21.4" } # Useful for lazy initialization in tests/app setup