diff --git a/Cargo.lock b/Cargo.lock index 93fc4f2a45778..360f3811fc267 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7398,9 +7398,9 @@ checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" [[package]] name = "serde" -version = "1.0.175" +version = "1.0.180" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d25439cd7397d044e2748a6fe2432b5e85db703d6d097bd014b3c0ad1ebff0b" +checksum = "0ea67f183f058fe88a4e3ec6e2788e003840893b91bac4559cabedd00863b3ed" dependencies = [ "serde_derive", ] @@ -7458,9 +7458,9 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.175" +version = "1.0.180" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b23f7ade6f110613c0d63858ddb8b94c1041f550eab58a16b371bdf2c9c80ab4" +checksum = "24e744d7782b686ab3b73267ef05697159cc0e5abbed3f47f9933165e5219036" dependencies = [ "proc-macro2 1.0.66", "quote 1.0.32", diff --git a/Cargo.toml b/Cargo.toml index 190ef403a2334..ca40968147f5d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -197,7 +197,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.3", default-features = false, features = ["decompression-gzip"]} # Serde -serde = { version = "1.0.175", default-features = false, features = ["derive"] } +serde = { version = "1.0.180", default-features = false, features = ["derive"] } serde-toml-merge = { version = "0.3.0", default-features = false } serde_bytes = { version = "0.11.12", default-features = false, features = ["std"], optional = true } serde_json = { version = "1.0.104", default-features = false, features = ["raw_value"] } diff --git a/lib/vector-api-client/Cargo.toml b/lib/vector-api-client/Cargo.toml index eb1ce22f2f8d8..107904f46355e 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.175", default-features = false, features = ["derive"] } +serde = { version = "1.0.180", default-features = false, features = ["derive"] } serde_json = { version = "1.0.104", default-features = false, features = ["raw_value"] } # Error handling diff --git a/lib/vector-buffers/Cargo.toml b/lib/vector-buffers/Cargo.toml index 90500e911a12d..a97b18d91c6cd 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.16", 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.175", default-features = false, features = ["derive"] } +serde = { version = "1.0.180", 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 8f2c9f100d24a..320f3c43f1b3a 100644 --- a/lib/vector-common/Cargo.toml +++ b/lib/vector-common/Cargo.toml @@ -56,7 +56,7 @@ paste = "1.0.14" pin-project = { version = "1.1.2", default-features = false } ryu = { version = "1", default-features = false } serde_json = { version = "1.0.104", default-features = false, features = ["std", "raw_value"] } -serde = { version = "1.0.175", optional = true, features = ["derive"] } +serde = { version = "1.0.180", 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 ae6b281a3a566..c9d38e761dd14 100644 --- a/lib/vector-config-macros/Cargo.toml +++ b/lib/vector-config-macros/Cargo.toml @@ -16,5 +16,5 @@ syn = { version = "2.0", default-features = false, features = ["full", "extra-tr vector-config-common = { path = "../vector-config-common" } [dev-dependencies] -serde = { version = "1.0.175", default-features = false } +serde = { version = "1.0.180", default-features = false } vector-config = { path = "../vector-config" } diff --git a/lib/vector-core/Cargo.toml b/lib/vector-core/Cargo.toml index 8c2c6953eaac3..43f7f880a6ce6 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.175", default-features = false, features = ["derive", "rc"] } +serde = { version = "1.0.180", default-features = false, features = ["derive", "rc"] } serde_json = { version = "1.0.104", default-features = false } serde_with = { version = "3.1.0", 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 8544b30711cc5..dc33d48355a60 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.175", default-features = false, features = ["derive", "alloc"] } +serde = { version = "1.0.180", default-features = false, features = ["derive", "alloc"] } vector-config = { path = "../vector-config" } vector-config-macros = { path = "../vector-config-macros" } vrl.workspace = true