diff --git a/Cargo.lock b/Cargo.lock index 4f764ab..12d1862 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -836,9 +836,9 @@ dependencies = [ [[package]] name = "log" -version = "0.4.16" +version = "0.4.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6389c490849ff5bc16be905ae24bc913a9c8892e19b2341dbc175e14c341c2b8" +checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" dependencies = [ "cfg-if", ] diff --git a/core/Cargo.toml b/core/Cargo.toml index c374ec7..5a14152 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -17,7 +17,7 @@ path = "./src/main.rs" better-panic = "0.3.0" simplelog = "0.12.0" tokio = { version = "1.18.1", features = ["full"] } -log = { version = "0.4.16", features = ["max_level_debug", "release_max_level_warn"] } +log = { version = "0.4.17", features = ["max_level_debug", "release_max_level_warn"] } homedisk-database = { path = "../database" } homedisk-server = { path = "../server" } homedisk-types = { path = "../types", features = ["config"] } diff --git a/database/Cargo.toml b/database/Cargo.toml index fea9852..624edd0 100644 --- a/database/Cargo.toml +++ b/database/Cargo.toml @@ -4,7 +4,7 @@ version = "0.0.0" edition = "2021" [dependencies] -log = "0.4.16" +log = "0.4.17" futures-util = "0.3.21" serde = { version = "1.0.137", features = ["derive"] } sqlx = { version = "0.5.13", features = ["runtime-tokio-rustls", "sqlite"] } diff --git a/server/Cargo.toml b/server/Cargo.toml index 1ae27bc..f05e827 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] axum = "0.5.4" -log = "0.4.16" +log = "0.4.17" thiserror = "1.0.31" serde = { version = "1.0.137", features = ["derive"] } tower-http = { version = "0.3.1", features = ["full"] }