diff --git a/Cargo.toml b/Cargo.toml index bdf9392..d8a3bec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bybe" -version = "2.2.1" +version = "2.3.0" authors = ["RakuJa"] # Compiler info @@ -32,15 +32,15 @@ unsafe_code = "forbid" actix-web = "4.9.0" actix-cors = "0.7.0" -utoipa = { version = "5.0.0-rc.0", features = ["actix_extras"] } -utoipa-swagger-ui = { version = "7.1.1-rc.0", features = ["actix-web", "reqwest"] } +utoipa = { version = "5.2.0", features = ["actix_extras"] } +utoipa-swagger-ui = { version = "8.0.3", features = ["actix-web", "reqwest"] } sqlx = { version = "0.8.2", features = ["runtime-async-std", "sqlite"] } -cached = { version = "0.53.1", features = ["async"] } +cached = { version = "0.54.0", features = ["async"] } -anyhow = "1.0.89" -serde = { version = "1.0.210", features = ["derive"] } -serde_json = "1.0.128" +anyhow = "1.0.93" +serde = { version = "1.0.214", features = ["derive"] } +serde_json = "1.0.132" strum = {version="0.26.3", features = ["derive"]} fastrand = "2.1.1" counter = "0.6.0" @@ -49,7 +49,7 @@ num-traits = "0.2.19" maplit = "1.0.2" itertools = "0.13.0" -regex = "1.11.0" +regex = "1.11.1" dotenvy = "0.15.7" @@ -59,9 +59,9 @@ once_cell = "1.20.2" [build-dependencies] tokio = { version = "1", features = ["macros", "rt-multi-thread", "rt"] } -anyhow = "1.0.89" +anyhow = "1.0.93" sqlx = {version = "0.8.2", features = ["runtime-async-std", "sqlite"]} dotenvy = "0.15.7" [dev-dependencies] -rstest = "0.22.0" +rstest = "0.23.0" diff --git a/src/lib.rs b/src/lib.rs index 8f82ce1..dac3402 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -98,7 +98,6 @@ pub async fn start( } else { dotenv().ok(); } - // get env vars match init_log_resp { InitializeLogResponsibility::Personal => { env_logger::init_from_env(env_logger::Env::new().default_filter_or("info"));