From 39897919be2402c13284bab27125b2b8a62225a6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 11 Jul 2023 12:58:49 +0000 Subject: [PATCH] chore(deps): Bump serde from 1.0.167 to 1.0.168 (#17920) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [serde](https://github.com/serde-rs/serde) from 1.0.167 to 1.0.168. Release notes Sourced from serde's releases. v1.0.168 Allow serde::de::IgnoredAny to be the type for a serde(flatten) field (#2436, thanks @​Mingun) Allow larger preallocated capacity for smaller elements (#2494) Commits 09b78b2 Release 1.0.168 a622b8a Merge pull request #2495 from dtolnay/cautious 399ef08 Allow larger preallocated capacity for smaller elements 3686277 Merge pull request #2436 from Mingun/flatten-ignored-any See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=serde&package-manager=cargo&previous-version=1.0.167&new-version=1.0.168)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- lib/vector-api-client/Cargo.toml | 2 +- lib/vector-buffers/Cargo.toml | 2 +- lib/vector-common/Cargo.toml | 2 +- lib/vector-config-macros/Cargo.toml | 2 +- lib/vector-core/Cargo.toml | 2 +- lib/vector-lookup/Cargo.toml | 2 +- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 145159a516980..e1edc908749f4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7337,9 +7337,9 @@ checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" [[package]] name = "serde" -version = "1.0.167" +version = "1.0.168" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7daf513456463b42aa1d94cff7e0c24d682b429f020b9afa4f5ba5c40a22b237" +checksum = "d614f89548720367ded108b3c843be93f3a341e22d5674ca0dd5cd57f34926af" dependencies = [ "serde_derive", ] @@ -7397,9 +7397,9 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.167" +version = "1.0.168" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b69b106b68bc8054f0e974e70d19984040f8a5cf9215ca82626ea4853f82c4b9" +checksum = "d4fe589678c688e44177da4f27152ee2d190757271dc7f1d5b6b9f68d869d641" dependencies = [ "proc-macro2 1.0.64", "quote 1.0.29", diff --git a/Cargo.toml b/Cargo.toml index 21a0311135acb..b8ade5046d7c5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -194,7 +194,7 @@ opendal = {version = "0.38", default-features = false, features = ["native-tls", tower = { version = "0.4.13", default-features = false, features = ["buffer", "limit", "retry", "timeout", "util", "balance", "discover"] } tower-http = { version = "0.4.1", default-features = false, features = ["decompression-gzip"]} # Serde -serde = { version = "1.0.164", default-features = false, features = ["derive"] } +serde = { version = "1.0.168", default-features = false, features = ["derive"] } serde-toml-merge = { version = "0.3.0", default-features = false } serde_bytes = { version = "0.11.11", default-features = false, features = ["std"], optional = true } serde_json = { version = "1.0.100", default-features = false, features = ["raw_value"] } diff --git a/lib/vector-api-client/Cargo.toml b/lib/vector-api-client/Cargo.toml index e33b8dd303467..1b6324fa38666 100644 --- a/lib/vector-api-client/Cargo.toml +++ b/lib/vector-api-client/Cargo.toml @@ -9,7 +9,7 @@ license = "MPL-2.0" [dependencies] # Serde -serde = { version = "1.0.164", default-features = false, features = ["derive"] } +serde = { version = "1.0.168", default-features = false, features = ["derive"] } serde_json = { version = "1.0.100", default-features = false, features = ["raw_value"] } # Error handling diff --git a/lib/vector-buffers/Cargo.toml b/lib/vector-buffers/Cargo.toml index 061735e56dd70..01c66b2005342 100644 --- a/lib/vector-buffers/Cargo.toml +++ b/lib/vector-buffers/Cargo.toml @@ -21,7 +21,7 @@ metrics = "0.21.1" num-traits = { version = "0.2.15", default-features = false } pin-project = { version = "1.1.2", default-features = false } rkyv = { version = "0.7.40", default-features = false, features = ["size_32", "std", "strict", "validation"] } -serde = { version = "1.0.164", default-features = false, features = ["derive"] } +serde = { version = "1.0.168", default-features = false, features = ["derive"] } snafu = { version = "0.7.5", default-features = false, features = ["std"] } tokio-util = { version = "0.7.0", default-features = false } tokio = { version = "1.29.1", default-features = false, features = ["rt", "macros", "rt-multi-thread", "sync", "fs", "io-util", "time"] } diff --git a/lib/vector-common/Cargo.toml b/lib/vector-common/Cargo.toml index fb829627d1616..420def2adcba8 100644 --- a/lib/vector-common/Cargo.toml +++ b/lib/vector-common/Cargo.toml @@ -56,7 +56,7 @@ paste = "1.0.13" pin-project = { version = "1.1.2", default-features = false } ryu = { version = "1", default-features = false } serde_json = { version = "1.0.100", default-features = false, features = ["std", "raw_value"] } -serde = { version = "1.0.164", optional = true, features = ["derive"] } +serde = { version = "1.0.168", optional = true, features = ["derive"] } smallvec = { version = "1", default-features = false } snafu = { version = "0.7", optional = true } stream-cancel = { version = "0.8.1", default-features = false } diff --git a/lib/vector-config-macros/Cargo.toml b/lib/vector-config-macros/Cargo.toml index 2a133adaa4fcd..9b3b2eb91ff74 100644 --- a/lib/vector-config-macros/Cargo.toml +++ b/lib/vector-config-macros/Cargo.toml @@ -16,5 +16,5 @@ syn = { version = "1.0", default-features = false, features = ["full", "extra-tr vector-config-common = { path = "../vector-config-common" } [dev-dependencies] -serde = { version = "1.0.164", default-features = false } +serde = { version = "1.0.168", default-features = false } vector-config = { path = "../vector-config" } diff --git a/lib/vector-core/Cargo.toml b/lib/vector-core/Cargo.toml index ef9460c8233fe..9fd0347209f8c 100644 --- a/lib/vector-core/Cargo.toml +++ b/lib/vector-core/Cargo.toml @@ -40,7 +40,7 @@ prost = { version = "0.11", default-features = false, features = ["std"] } quanta = { version = "0.11.1", default-features = false } regex = { version = "1.9.1", default-features = false, features = ["std", "perf"] } ryu = { version = "1", default-features = false } -serde = { version = "1.0.164", default-features = false, features = ["derive", "rc"] } +serde = { version = "1.0.168", default-features = false, features = ["derive", "rc"] } serde_json = { version = "1.0.100", default-features = false } serde_with = { version = "2.3.2", default-features = false, features = ["std", "macros"] } smallvec = { version = "1", default-features = false, features = ["serde", "const_generics"] } diff --git a/lib/vector-lookup/Cargo.toml b/lib/vector-lookup/Cargo.toml index a159f31561d0f..f305e43c02c7f 100644 --- a/lib/vector-lookup/Cargo.toml +++ b/lib/vector-lookup/Cargo.toml @@ -7,7 +7,7 @@ publish = false license = "MPL-2.0" [dependencies] -serde = { version = "1.0.164", default-features = false, features = ["derive", "alloc"] } +serde = { version = "1.0.168", default-features = false, features = ["derive", "alloc"] } vector-config = { path = "../vector-config" } vector-config-macros = { path = "../vector-config-macros" } vrl.workspace = true
Sourced from serde's releases.
v1.0.168 Allow serde::de::IgnoredAny to be the type for a serde(flatten) field (#2436, thanks @​Mingun) Allow larger preallocated capacity for smaller elements (#2494)
serde::de::IgnoredAny
serde(flatten)
@​Mingun
09b78b2
a622b8a
399ef08
3686277