Update Rust crate serde_json to 1.0.101
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Pierre HUBERT 2023-07-12 00:16:13 +00:00
parent 50e2db5256
commit 42bea6bba4
3 changed files with 4 additions and 4 deletions

4
rust/Cargo.lock generated
View File

@ -1767,9 +1767,9 @@ dependencies = [
[[package]] [[package]]
name = "serde_json" name = "serde_json"
version = "1.0.100" version = "1.0.101"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0f1e14e89be7aa4c4b78bdbdc9eb5bf8517829a600ae8eaa39a6e1d960b5185c" checksum = "9e8ce1a9fbaeca48fe75743b1064d2a17ee0f88218edefa313c4d16e7c34f662"
dependencies = [ dependencies = [
"itoa", "itoa",
"ryu", "ryu",

View File

@ -16,7 +16,7 @@ clap = { version = "4.3.11", features = ["derive"] }
log = "0.4.19" log = "0.4.19"
env_logger = "0.10.0" env_logger = "0.10.0"
serde = { version = "1.0.171", features = ["derive"] } serde = { version = "1.0.171", features = ["derive"] }
serde_json = "1.0.100" serde_json = "1.0.101"
actix-web = "4.1.0" actix-web = "4.1.0"
actix-cors = "0.6.2" actix-cors = "0.6.2"
actix = "0.13.0" actix = "0.13.0"

View File

@ -27,7 +27,7 @@ textwrap = "0.16.0"
tokio-tungstenite = { version = "0.19.0", features = ["__rustls-tls", "rustls-tls-native-roots"] } tokio-tungstenite = { version = "0.19.0", features = ["__rustls-tls", "rustls-tls-native-roots"] }
serde_urlencoded = "0.7.1" serde_urlencoded = "0.7.1"
futures = "0.3.23" futures = "0.3.23"
serde_json = "1.0.100" serde_json = "1.0.101"
hostname = "0.3.1" hostname = "0.3.1"
rustls = "0.21.5" rustls = "0.21.5"
hyper-rustls = { version = "0.24.1", features = ["rustls-native-certs"] } hyper-rustls = { version = "0.24.1", features = ["rustls-native-certs"] }