diff --git a/Cargo.lock b/Cargo.lock index 9ff66b17..f48f827b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1236,9 +1236,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.135" +version = "1.0.137" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b0d7ba2887406110130a978386c4e1befb98c674b4fba677954e4db976630d9" +checksum = "930cfb6e6abf99298aaad7d29abbef7a9999a9a8806a40088f55f0dcec03146b" dependencies = [ "itoa", "memchr", diff --git a/libmsvisor/Cargo.toml b/libmsvisor/Cargo.toml index 26cb7fc2..f4ad0323 100644 --- a/libmsvisor/Cargo.toml +++ b/libmsvisor/Cargo.toml @@ -20,7 +20,7 @@ env_logger = "0.10.0" xmas-elf = "0.9.0" # use to parse dynlib elf file. nix = { version = "0.28.0", features = ["mman"] } # use to call dlmopen, mmap. serde = { version = "1.0.183", features = ["derive"] } -serde_json = "1.0.105" +serde_json = "1.0.137" thiserror = "1.0.56" heapless = "0.8" diff --git a/ms_std/Cargo.toml b/ms_std/Cargo.toml index 9d8ea25b..c2e55a53 100644 --- a/ms_std/Cargo.toml +++ b/ms_std/Cargo.toml @@ -31,7 +31,7 @@ serde = { version = "1.0.217", default-features = false, features = [ # "derive", # "serde_derive", ] } -serde_json = { version = "1.0.135", default-features = false, features = [ +serde_json = { version = "1.0.137", default-features = false, features = [ "alloc", ] }