chore: remove unused deps

This commit is contained in:
kjuulh 2025-03-25 20:17:28 +01:00
parent 08a36c010e
commit 248a7f0e3e
4 changed files with 26 additions and 1806 deletions

1822
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -13,5 +13,4 @@ tokio = { version = "1", features = ["full"] }
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3.18" }
clap = { version = "4", features = ["derive", "env"] }
dotenv = { version = "0.15" }
axum = { version = "0.7" }
dotenvy = { version = "0.15" }

View File

@ -10,13 +10,10 @@ tokio.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
clap.workspace = true
dotenv.workspace = true
axum.workspace = true
dotenvy.workspace = true
serde = { version = "1.0.197", features = ["derive"] }
sqlx = { version = "0.7.3", features = ["runtime-tokio", "tls-rustls", "postgres", "uuid", "time"] }
uuid = { version = "1.7.0", features = ["v4"] }
tower-http = { version = "0.5.2", features = ["cors", "trace"] }
dirs = "6.0.0"
serde_json = "1.0.140"
chrono = { version = "0.4.40", features = ["serde"] }

View File

@ -37,7 +37,7 @@ enum Commands {
#[tokio::main]
async fn main() -> anyhow::Result<()> {
dotenv::dotenv().ok();
let _ = dotenvy::dotenv();
tracing_subscriber::fmt::init();
let cli = Command::parse();