Update Rust crate env_logger to 0.11.3
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing

This commit is contained in:
Pierre HUBERT 2024-03-06 00:11:07 +00:00
parent 042b9f3f60
commit 348c200f39
2 changed files with 10 additions and 4 deletions

12
Cargo.lock generated
View File

@ -568,6 +568,12 @@ version = "0.21.7"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
[[package]]
name = "base64"
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51"
[[package]] [[package]]
name = "base64ct" name = "base64ct"
version = "1.6.0" version = "1.6.0"
@ -596,7 +602,7 @@ dependencies = [
"actix-web", "actix-web",
"askama", "askama",
"base32", "base32",
"base64 0.21.7", "base64 0.22.0",
"bcrypt", "bcrypt",
"bincode", "bincode",
"chrono", "chrono",
@ -1153,9 +1159,9 @@ dependencies = [
[[package]] [[package]]
name = "env_logger" name = "env_logger"
version = "0.11.2" version = "0.11.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c012a26a7f605efc424dd53697843a72be7dc86ad2d01f7814337794a12231d" checksum = "38b35839ba51819680ba087cd351788c9a3c476841207e0b8cee0b04722343b9"
dependencies = [ dependencies = [
"anstream", "anstream",
"anstyle", "anstyle",

View File

@ -16,7 +16,7 @@ include_dir = "0.7.3"
log = "0.4.21" log = "0.4.21"
serde_json = "1.0.114" serde_json = "1.0.114"
serde_yaml = "0.9.32" serde_yaml = "0.9.32"
env_logger = "0.11.2" env_logger = "0.11.3"
serde = { version = "1.0.197", features = ["derive"] } serde = { version = "1.0.197", features = ["derive"] }
bcrypt = "0.15.0" bcrypt = "0.15.0"
uuid = { version = "1.7.0", features = ["v4"] } uuid = { version = "1.7.0", features = ["v4"] }