diff --git a/Cargo.lock b/Cargo.lock index 74aa0649f0ef8..61151cac84729 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1496,7 +1496,7 @@ checksum = "602bda35f33aeb571cef387dcd4042c643a8bf689d8aaac2cc47ea24cb7bc7e0" dependencies = [ "chrono", "serde", - "serde_with 2.3.1", + "serde_with 2.3.2", ] [[package]] @@ -7627,9 +7627,9 @@ dependencies = [ [[package]] name = "serde_with" -version = "2.3.1" +version = "2.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85456ffac572dc8826334164f2fb6fb40a7c766aebe195a2a21ee69ee2885ecf" +checksum = "331bb8c3bf9b92457ab7abecf07078c13f7d270ba490103e84e8b014490cd0b0" dependencies = [ "base64 0.13.1", "chrono", @@ -7637,7 +7637,7 @@ dependencies = [ "indexmap", "serde", "serde_json", - "serde_with_macros 2.3.1", + "serde_with_macros 2.3.2", "time", ] @@ -7655,9 +7655,9 @@ dependencies = [ [[package]] name = "serde_with_macros" -version = "2.3.1" +version = "2.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7cbcd6104f8a4ab6af7f6be2a0da6be86b9de3c401f6e86bb856ab2af739232f" +checksum = "859011bddcc11f289f07f467cc1fe01c7a941daa4d8f6c40d4d1c92eb6d9319c" dependencies = [ "darling 0.14.2", "proc-macro2 1.0.55", @@ -9501,7 +9501,7 @@ dependencies = [ "serde-toml-merge", "serde_bytes", "serde_json", - "serde_with 2.3.1", + "serde_with 2.3.2", "serde_yaml 0.9.19", "sha2 0.10.6", "similar-asserts", @@ -9672,7 +9672,7 @@ dependencies = [ "pretty_assertions", "serde", "serde_json", - "serde_with 2.3.1", + "serde_with 2.3.2", "snafu", "toml 0.7.3", "url", @@ -9763,7 +9763,7 @@ dependencies = [ "security-framework", "serde", "serde_json", - "serde_with 2.3.1", + "serde_with 2.3.2", "similar-asserts", "smallvec", "snafu", diff --git a/Cargo.toml b/Cargo.toml index 5931782b3abfa..037ec2e207d12 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -192,7 +192,7 @@ serde = { version = "1.0.159", default-features = false, features = ["derive"] } serde-toml-merge = { version = "0.3.0", default-features = false } serde_bytes = { version = "0.11.9", default-features = false, features = ["std"], optional = true } serde_json = { version = "1.0.95", default-features = false, features = ["raw_value"] } -serde_with = { version = "2.3.1", default-features = false, features = ["macros", "std"] } +serde_with = { version = "2.3.2", default-features = false, features = ["macros", "std"] } serde_yaml = { version = "0.9.19", default-features = false } # Messagepack diff --git a/lib/vector-config/Cargo.toml b/lib/vector-config/Cargo.toml index 80d855f05866b..f509ca07fedb1 100644 --- a/lib/vector-config/Cargo.toml +++ b/lib/vector-config/Cargo.toml @@ -20,7 +20,7 @@ no-proxy = { version = "0.3.1", default-features = false, features = ["serializ num-traits = { version = "0.2.15", default-features = false } serde = { version = "1.0", default-features = false } serde_json = { version = "1.0", default-features = false, features = ["std"] } -serde_with = { version = "2.3.1", default-features = false, features = ["std"] } +serde_with = { version = "2.3.2", default-features = false, features = ["std"] } snafu = { version = "0.7.4", default-features = false } toml = { version = "0.7.3", default-features = false } url = { version = "2.3.1", default-features = false, features = ["serde"] } @@ -31,4 +31,4 @@ vector-config-macros = { path = "../vector-config-macros" } [dev-dependencies] pretty_assertions = { version = "1.3.0", default-features = false, features = ["std"] } -serde_with = { version = "2.3.1", default-features = false, features = ["std", "macros"] } +serde_with = { version = "2.3.2", default-features = false, features = ["std", "macros"] } diff --git a/lib/vector-core/Cargo.toml b/lib/vector-core/Cargo.toml index 6303c9c92d94b..851f81064b9fa 100644 --- a/lib/vector-core/Cargo.toml +++ b/lib/vector-core/Cargo.toml @@ -42,7 +42,7 @@ regex = { version = "1.7.3", default-features = false, features = ["std", "perf" ryu = { version = "1", default-features = false } serde = { version = "1.0.159", default-features = false, features = ["derive", "rc"] } serde_json = { version = "1.0.95", default-features = false } -serde_with = { version = "2.3.1", default-features = false, features = ["std", "macros"] } +serde_with = { version = "2.3.2", default-features = false, features = ["std", "macros"] } smallvec = { version = "1", default-features = false, features = ["serde", "const_generics"] } snafu = { version = "0.7.4", default-features = false } socket2 = { version = "0.4.7", default-features = false }