rust: update serde_json to 1.0.79 and serde to 1.0.136

Summary:
Needed to import [cloud-hypervisor](https://github.com/cloud-hypervisor/cloud-hypervisor).

(Note: this ignores all push blocking failures!)

Reviewed By: dtolnay

Differential Revision: D34433589

fbshipit-source-id: f92ea3ba640d19f170513b558f3d5208790bab67
This commit is contained in:
Huapeng Zhou 2022-04-10 23:39:55 -07:00 committed by Facebook GitHub Bot
parent f9bb665df0
commit f38f5c1cbc
6 changed files with 7 additions and 7 deletions

View file

@ -54,8 +54,8 @@ nix = "0.23"
reverie = { version = "0.1.0", path = "../reverie" }
reverie-ptrace = { version = "0.1.0", path = "../reverie-ptrace" }
reverie-util = { version = "0.1.0", path = "../reverie-util" }
serde = { version = "1.0.126", features = ["derive", "rc"] }
serde_json = { version = "1.0.64", features = ["float_roundtrip", "unbounded_depth"] }
serde = { version = "1.0.136", features = ["derive", "rc"] }
serde_json = { version = "1.0.79", features = ["float_roundtrip", "unbounded_depth"] }
structopt = "0.3.23"
tokio = { version = "1.15", features = ["full", "test-util", "tracing"] }
tracing = "0.1.32"

View file

@ -14,7 +14,7 @@ colored = "1.9"
futures = { version = "0.3.13", features = ["async-await", "compat"] }
libc = "0.2.121"
nix = "0.23"
serde = { version = "1.0.126", features = ["derive", "rc"] }
serde = { version = "1.0.136", features = ["derive", "rc"] }
syscalls = { version = "0.4.2", features = ["with-serde"] }
thiserror = "1.0.30"
tokio = { version = "1.15", features = ["full", "test-util", "tracing"] }

View file

@ -25,7 +25,7 @@ perf-event-open-sys = "1.0"
procfs = "0.9"
raw-cpuid = "9.0"
reverie = { version = "0.1.0", path = "../reverie" }
serde = { version = "1.0.126", features = ["derive", "rc"] }
serde = { version = "1.0.136", features = ["derive", "rc"] }
thiserror = "1.0.30"
tokio = { version = "1.15", features = ["full", "test-util", "tracing"] }
tokio-stream = { version = "0.1.4", features = ["fs", "io-util", "net", "signal", "sync", "time"] }

View file

@ -13,5 +13,5 @@ derive_more = "0.99.3"
libc = "0.2.121"
nix = "0.23"
paste = "1.0"
serde = { version = "1.0.126", features = ["derive", "rc"] }
serde = { version = "1.0.136", features = ["derive", "rc"] }
syscalls = { version = "0.4.2", features = ["with-serde"] }

View file

@ -13,7 +13,7 @@ chrono = { version = "0.4", features = ["clock", "serde", "std"], default-featur
libc = "0.2.121"
nix = "0.23"
reverie = { version = "0.1.0", path = "../reverie" }
serde = { version = "1.0.126", features = ["derive", "rc"] }
serde = { version = "1.0.136", features = ["derive", "rc"] }
structopt = "0.3.23"
tracing = "0.1.32"
tracing-appender = "0.2.1"

View file

@ -25,6 +25,6 @@ procfs = "0.9"
raw-cpuid = "9.0"
reverie-process = { version = "0.1.0", path = "../reverie-process" }
reverie-syscalls = { version = "0.1.0", path = "../reverie-syscalls" }
serde = { version = "1.0.126", features = ["derive", "rc"] }
serde = { version = "1.0.136", features = ["derive", "rc"] }
thiserror = "1.0.30"
typed-arena = "2"