diff --git a/Cargo.lock b/Cargo.lock index b17135d4edd75..dbbad51299606 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1519,7 +1519,7 @@ checksum = "602bda35f33aeb571cef387dcd4042c643a8bf689d8aaac2cc47ea24cb7bc7e0" dependencies = [ "chrono", "serde", - "serde_with 2.2.0", + "serde_with 2.3.0", ] [[package]] @@ -7557,9 +7557,9 @@ dependencies = [ [[package]] name = "serde_with" -version = "2.2.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30d904179146de381af4c93d3af6ca4984b3152db687dacb9c3c35e86f39809c" +checksum = "7ea48c9627169d206b35905699f513f513c303ab9d964a59b44fdcf66c1d1ab7" dependencies = [ "base64 0.13.1", "chrono", @@ -7567,7 +7567,7 @@ dependencies = [ "indexmap", "serde", "serde_json", - "serde_with_macros 2.2.0", + "serde_with_macros 2.3.0", "time", ] @@ -7585,9 +7585,9 @@ dependencies = [ [[package]] name = "serde_with_macros" -version = "2.2.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1966009f3c05f095697c537312f5415d1e3ed31ce0a56942bac4c771c5c335e" +checksum = "9e6b7e52858f9f06c25e1c566bbb4ab428200cb3b30053ea09dc50837de7538b" dependencies = [ "darling 0.14.2", "proc-macro2 1.0.51", @@ -9475,7 +9475,7 @@ dependencies = [ "serde-toml-merge", "serde_bytes", "serde_json", - "serde_with 2.2.0", + "serde_with 2.3.0", "serde_yaml 0.9.19", "sha2 0.10.6", "similar-asserts", @@ -9644,7 +9644,7 @@ dependencies = [ "num-traits", "serde", "serde_json", - "serde_with 2.2.0", + "serde_with 2.3.0", "snafu", "toml 0.7.2", "url", @@ -9733,7 +9733,7 @@ dependencies = [ "security-framework", "serde", "serde_json", - "serde_with 2.2.0", + "serde_with 2.3.0", "similar-asserts", "smallvec", "snafu", diff --git a/Cargo.toml b/Cargo.toml index 441a4ec316f9c..2c502bb862141 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -202,7 +202,7 @@ serde = { version = "1.0.154", 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.94", default-features = false, features = ["raw_value"] } -serde_with = { version = "2.2.0", default-features = false, features = ["macros", "std"] } +serde_with = { version = "2.3.0", 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 51f3f9d23b139..0326afc8848dc 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.2.0", default-features = false, features = ["std"] } +serde_with = { version = "2.3.0", default-features = false, features = ["std"] } snafu = { version = "0.7.4", default-features = false } toml = { version = "0.7.2", default-features = false } url = { version = "2.3.1", default-features = false, features = ["serde"] } @@ -28,4 +28,4 @@ vector-config-common = { path = "../vector-config-common" } vector-config-macros = { path = "../vector-config-macros" } [dev-dependencies] -serde_with = { version = "2.2.0", default-features = false, features = ["std", "macros"] } +serde_with = { version = "2.3.0", default-features = false, features = ["std", "macros"] } diff --git a/lib/vector-core/Cargo.toml b/lib/vector-core/Cargo.toml index 188edee3ee966..67861952f223b 100644 --- a/lib/vector-core/Cargo.toml +++ b/lib/vector-core/Cargo.toml @@ -42,7 +42,7 @@ regex = { version = "1.7.1", default-features = false, features = ["std", "perf" ryu = { version = "1", default-features = false } serde = { version = "1.0.154", default-features = false, features = ["derive", "rc"] } serde_json = { version = "1.0.94", default-features = false } -serde_with = { version = "2.2.0", default-features = false, features = ["std", "macros"] } +serde_with = { version = "2.3.0", 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 }