diff --git a/Cargo.lock b/Cargo.lock index 40121767..98c96d0c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -803,9 +803,9 @@ checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456" [[package]] name = "log" -version = "0.4.20" +version = "0.4.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" +checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" [[package]] name = "memchr" diff --git a/odbc-api/Cargo.toml b/odbc-api/Cargo.toml index 0751865d..66ec7670 100644 --- a/odbc-api/Cargo.toml +++ b/odbc-api/Cargo.toml @@ -69,7 +69,7 @@ odbc-sys = { version = ">= 0.22, < 0.25", default-features = false } # Used to generate code for the error type thiserror = "1.0.57" # Used as a log frontend to emit log messages for applications -log = "0.4.20" +log = "0.4.21" # Interacting with UTF-16 texts for wide columns or wide function calls widestring = "1.0.2" atoi = "2.0.0" diff --git a/odbcsv/Cargo.toml b/odbcsv/Cargo.toml index 27715d53..17089335 100644 --- a/odbcsv/Cargo.toml +++ b/odbcsv/Cargo.toml @@ -33,7 +33,7 @@ odbc-api = { version = "6.0.1", path = "../odbc-api" } csv = "1.3.0" anyhow = "1.0.80" stderrlog = "0.6.0" -log = "0.4.20" +log = "0.4.21" clap = { version = "4.5.1", features = ["derive", "env"] } [dev-dependencies]