From 056c965b71a81fec741393dcda30bbc2da62f8fc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Sep 2024 01:51:43 +0000 Subject: [PATCH] build(deps): bump serde from 1.0.209 to 1.0.210 Bumps [serde](https://github.com/serde-rs/serde) from 1.0.209 to 1.0.210. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.209...v1.0.210) --- updated-dependencies: - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- plugin_core/Cargo.toml | 2 +- plugin_openapi/Cargo.toml | 2 +- plugin_terraform/Cargo.toml | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d149979..cb1453c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2243,18 +2243,18 @@ checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca" [[package]] name = "serde" -version = "1.0.209" +version = "1.0.210" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "99fce0ffe7310761ca6bf9faf5115afbc19688edd00171d81b1bb1b116c63e09" +checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.209" +version = "1.0.210" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5831b979fd7b5439637af1752d535ff49f4860c0f341d1baeb6faf0f4242170" +checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 70d9609..ad4112f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,7 +26,7 @@ yaml-hash = "=0.3.0" openapiv3 = "2.0.0" plugin_core = { path = "./plugin_core" } reqwest = { version = "0.12.7", features = ["json", "blocking"] } -serde = { version = "1.0.209", features = ["derive"] } +serde = { version = "1.0.210", features = ["derive"] } serde_json = "1.0.127" serde_yaml = "0.9.34" sha256 = "1.5.0" diff --git a/plugin_core/Cargo.toml b/plugin_core/Cargo.toml index 8950795..a82c048 100644 --- a/plugin_core/Cargo.toml +++ b/plugin_core/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -serde = { version = "1.0.209", features = ["derive"] } +serde = { version = "1.0.210", features = ["derive"] } serde_json = "1.0.127" thiserror = "1.0.63" trustfall = "0.7.1" diff --git a/plugin_openapi/Cargo.toml b/plugin_openapi/Cargo.toml index b2475e4..b350f23 100644 --- a/plugin_openapi/Cargo.toml +++ b/plugin_openapi/Cargo.toml @@ -12,7 +12,7 @@ crate_type = ["cdylib"] extism-pdk = "1.1.0" yaml-hash = "=0.3.0" openapiv3 = "2.0.0" -serde = { version = "1.0.209", features = ["derive"] } +serde = { version = "1.0.210", features = ["derive"] } serde_json = "1.0.127" serde_yaml = "0.9.32" trustfall = "0.7.1" diff --git a/plugin_terraform/Cargo.toml b/plugin_terraform/Cargo.toml index 1f47afb..1240df4 100644 --- a/plugin_terraform/Cargo.toml +++ b/plugin_terraform/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" anyhow = "1.0.86" extism-pdk = "1.1.0" hcl-rs = "0.18.0" -serde = { version = "1.0.209", features = ["derive"] } +serde = { version = "1.0.210", features = ["derive"] } serde_json = "1.0.127" trustfall = "0.7.1" plugin_core = { path = "../plugin_core" }