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

This commit is contained in:
Pierre HUBERT 2024-01-04 00:30:29 +00:00
parent 7b4812789c
commit 4f182bcf52
3 changed files with 4 additions and 4 deletions

4
rust/Cargo.lock generated
View File

@ -1808,9 +1808,9 @@ dependencies = [
[[package]] [[package]]
name = "serde_json" name = "serde_json"
version = "1.0.105" version = "1.0.110"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "693151e1ac27563d6dbcec9dee9fbd5da8539b20fa14ad3752b2e6d363ace360" checksum = "6fbd975230bada99c8bb618e0c365c2eefa219158d5c6c29610fd09ff1833257"
dependencies = [ dependencies = [
"itoa", "itoa",
"ryu", "ryu",

View File

@ -16,7 +16,7 @@ clap = { version = "4.4.12", features = ["derive"] }
log = "0.4.20" log = "0.4.20"
env_logger = "0.10.1" env_logger = "0.10.1"
serde = { version = "1.0.194", features = ["derive"] } serde = { version = "1.0.194", features = ["derive"] }
serde_json = "1.0.105" serde_json = "1.0.110"
actix-web = "4.4.1" actix-web = "4.4.1"
actix-cors = "0.6.5" actix-cors = "0.6.5"
actix = "0.13.1" actix = "0.13.1"

View File

@ -27,7 +27,7 @@ textwrap = "0.16.0"
tokio-tungstenite = { version = "0.20.1", features = ["__rustls-tls", "rustls-tls-native-roots"] } tokio-tungstenite = { version = "0.20.1", features = ["__rustls-tls", "rustls-tls-native-roots"] }
serde_urlencoded = "0.7.1" serde_urlencoded = "0.7.1"
futures = "0.3.30" futures = "0.3.30"
serde_json = "1.0.105" serde_json = "1.0.110"
hostname = "0.3.1" hostname = "0.3.1"
rustls = "0.21.9" rustls = "0.21.9"
hyper-rustls = { version = "0.24.2", features = ["rustls-native-certs"] } hyper-rustls = { version = "0.24.2", features = ["rustls-native-certs"] }