From 2facdcb2eae6ece15dda30a62d77ba067f7d7cc3 Mon Sep 17 00:00:00 2001 From: Ninjdai Date: Sun, 10 Aug 2025 19:28:05 +0200 Subject: [PATCH] chore: remove unused cargo dependency --- Cargo.lock | 1 - Cargo.toml | 1 - 2 files changed, 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6e205aa..b898f86 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -45,7 +45,6 @@ dependencies = [ "axum", "axum-extra", "clap", - "dotenvy", "futures-util", "inquire", "jsonwebtoken", diff --git a/Cargo.toml b/Cargo.toml index 7ca2d9b..3d6e406 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,6 @@ strip = true # Strip symbols from binary* [dependencies] axum = { version = "0.8.4", features = [ "macros", "ws", "tokio" ] } axum-extra = { version = "0.10.1", features = ["typed-header"] } -dotenvy = "0.15.7" reqwest = { version = "0.12.22", features = ["json"] } sea-orm = { version = "1.1.13", features = [ "sqlx-sqlite", "runtime-tokio-native-tls", "macros" ] } serde = "1.0.219"