Skip to content

Commit

Permalink
chore: update libraries, bump version (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
RakuJa authored Nov 6, 2024
1 parent 9c9f99d commit d1320b6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bybe"
version = "2.2.1"
version = "2.3.0"
authors = ["RakuJa"]

# Compiler info
Expand Down Expand Up @@ -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"
Expand All @@ -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"

Expand All @@ -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"
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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"));
Expand Down

0 comments on commit d1320b6

Please sign in to comment.