diff --git a/Cargo.lock b/Cargo.lock index 2ed9fd87..3bb439f4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -122,6 +122,7 @@ dependencies = [ "proto", "reqwest", "serde", + "serde_json", "tempfile", "test_utils", "tokio", @@ -545,6 +546,7 @@ dependencies = [ "prost-types", "protox", "serde", + "serde_json", "tonic", "tonic-build", ] @@ -870,6 +872,7 @@ dependencies = [ "rand 0.8.5", "regex", "serde", + "serde_json", "thiserror 1.0.69", "tokio", "tracing", diff --git a/api/Cargo.toml b/api/Cargo.toml index 1d14f55e..591610b0 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -7,6 +7,7 @@ edition = "2021" context = { path = "../context" } display = { path = "../display" } serde = { version = "1.0.215", default-features = false, features = ["derive"] } +serde_json = "1.0.133" bundle = { path = "../bundle" } tokio = { version = "*", default-features = false, features = [ "rt-multi-thread", diff --git a/bazel-bep/Cargo.toml b/bazel-bep/Cargo.toml index 1c59d4a3..bd3eade3 100644 --- a/bazel-bep/Cargo.toml +++ b/bazel-bep/Cargo.toml @@ -11,7 +11,8 @@ prost = "0.12.6" prost-types = "0.12.6" pbjson = "0.6" pbjson-types = "0.6" -serde = { version = "1.0", features = ["derive"] } +serde = { version = "1.0.215", default-features = false, features = ["derive"] } +serde_json = "1.0.133" tonic = { version = "0.11", optional = true } [build-dependencies] diff --git a/codeowners/Cargo.toml b/codeowners/Cargo.toml index 3e4df383..402dba4c 100644 --- a/codeowners/Cargo.toml +++ b/codeowners/Cargo.toml @@ -24,6 +24,7 @@ constants = { path = "../constants" } fancy-regex = "0.13.0" indexmap = "2.5.0" serde = { version = "1.0.215", default-features = false, features = ["derive"] } +serde_json = "1.0.133" tsify-next = { version = "0.5.4", optional = true } wasm-bindgen = { version = "0.2.95", optional = true } js-sys = { version = "0.3", optional = true } diff --git a/xcresult/Cargo.toml b/xcresult/Cargo.toml index 42b6486d..bf68f998 100644 --- a/xcresult/Cargo.toml +++ b/xcresult/Cargo.toml @@ -21,7 +21,7 @@ tracing-subscriber = "0.3.19" petgraph = { version = "0.7.1", default-features = false } quick-junit = "0.5.0" regex = "1.11.0" -serde = { version = "1.0", features = ["derive"] } +serde = { version = "1.0.215", default-features = false } serde_json = "1.0.133" tracing = "0.1.41" uuid = { version = "1.10.0", features = ["v5"] }