From 2e51197ffa3edff553301e230b0f6d7d3f3e5606 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Oct 2023 11:41:39 -0600 Subject: [PATCH] chore(deps): Bump toml from 0.8.2 to 0.8.3 (#18909) Bumps [toml](https://github.com/toml-rs/toml) from 0.8.2 to 0.8.3. - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.2...toml-v0.8.3) --- updated-dependencies: - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 28 ++++++++++++++-------------- Cargo.toml | 2 +- lib/vector-config/Cargo.toml | 2 +- lib/vector-core/Cargo.toml | 4 ++-- vdev/Cargo.toml | 2 +- 5 files changed, 19 insertions(+), 19 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0a3e645b97890..bd3b7d382c833 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1872,7 +1872,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e3f9629bc6c4388ea699781dc988c2b99766d7679b151c81990b4fa1208fafd3" dependencies = [ "serde", - "toml 0.8.2", + "toml 0.8.3", ] [[package]] @@ -7802,7 +7802,7 @@ version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "af5ae5f42c16d60b098ae5d4afd75c1d3b6512e6ca5d0b9b916e2ced30df264c" dependencies = [ - "toml 0.8.2", + "toml 0.8.3", ] [[package]] @@ -7911,9 +7911,9 @@ dependencies = [ [[package]] name = "serde_spanned" -version = "0.6.3" +version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186" +checksum = "12022b835073e5b11e90a14f86838ceb1c8fb0325b72416845c487ac0fa95e80" dependencies = [ "serde", ] @@ -8925,9 +8925,9 @@ dependencies = [ [[package]] name = "toml" -version = "0.8.2" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d" +checksum = "b150d2f463da7b52f12110d3995dc86598bf90d535e929e5f5af15ab89155011" dependencies = [ "serde", "serde_spanned", @@ -8937,18 +8937,18 @@ dependencies = [ [[package]] name = "toml_datetime" -version = "0.6.3" +version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" +checksum = "51cc078118ed25af325985ff674c00c8416b0f962be67da4946854ebfc99f334" dependencies = [ "serde", ] [[package]] name = "toml_edit" -version = "0.20.2" +version = "0.20.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338" +checksum = "5a2534c1aa199edef7108fb7d970facaa17f8f8cc5ce6bde75372cfa1051ed91" dependencies = [ "indexmap 2.0.2", "serde", @@ -9661,7 +9661,7 @@ dependencies = [ "serde_yaml 0.9.25", "sha2", "tempfile", - "toml 0.8.2", + "toml 0.8.3", ] [[package]] @@ -9837,7 +9837,7 @@ dependencies = [ "tokio-test", "tokio-tungstenite", "tokio-util", - "toml 0.8.2", + "toml 0.8.3", "tonic 0.10.2", "tonic-build 0.10.2", "tower", @@ -9984,7 +9984,7 @@ dependencies = [ "serde_json", "serde_with 3.4.0", "snafu", - "toml 0.8.2", + "toml 0.8.3", "tracing 0.1.37", "url", "vector-config-common", @@ -10086,7 +10086,7 @@ dependencies = [ "tokio-stream", "tokio-test", "tokio-util", - "toml 0.8.2", + "toml 0.8.3", "tonic 0.10.2", "tower", "tracing 0.1.37", diff --git a/Cargo.toml b/Cargo.toml index 1f8f56ff0a08f..799b4760422c2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -322,7 +322,7 @@ syslog = { version = "6.1.0", default-features = false, optional = true } tikv-jemallocator = { version = "0.5.4", default-features = false, optional = true } tokio-postgres = { version = "0.7.10", default-features = false, features = ["runtime", "with-chrono-0_4"], optional = true } tokio-tungstenite = {version = "0.20.1", default-features = false, features = ["connect"], optional = true} -toml = { version = "0.8.2", default-features = false, features = ["parse", "display"] } +toml = { version = "0.8.3", default-features = false, features = ["parse", "display"] } tonic = { version = "0.10", optional = true, default-features = false, features = ["transport", "codegen", "prost", "tls", "tls-roots", "gzip"] } trust-dns-proto = { version = "0.23.1", default-features = false, features = ["dnssec"], optional = true } typetag = { version = "0.2.13", default-features = false } diff --git a/lib/vector-config/Cargo.toml b/lib/vector-config/Cargo.toml index 3b152f4b2e22c..86fde0b7d2c44 100644 --- a/lib/vector-config/Cargo.toml +++ b/lib/vector-config/Cargo.toml @@ -22,7 +22,7 @@ serde = { version = "1.0", default-features = false } serde_json = { version = "1.0", default-features = false, features = ["std"] } serde_with = { version = "3.4.0", default-features = false, features = ["std"] } snafu = { version = "0.7.5", default-features = false } -toml = { version = "0.8.2", default-features = false } +toml = { version = "0.8.3", default-features = false } tracing = { version = "0.1.34", default-features = false } url = { version = "2.4.1", default-features = false, features = ["serde"] } http = { version = "0.2.9", default-features = false } diff --git a/lib/vector-core/Cargo.toml b/lib/vector-core/Cargo.toml index 2ac77a1b36af4..cc9b8abad433b 100644 --- a/lib/vector-core/Cargo.toml +++ b/lib/vector-core/Cargo.toml @@ -51,7 +51,7 @@ tokio = { version = "1.33.0", default-features = false, features = ["net"] } tokio-openssl = { version = "0.6.3", default-features = false } tokio-stream = { version = "0.1", default-features = false, features = ["time"], optional = true } tokio-util = { version = "0.7.0", default-features = false, features = ["time"] } -toml = { version = "0.8.2", default-features = false } +toml = { version = "0.8.3", default-features = false } tonic = { version = "0.10", default-features = false, features = ["transport"] } tower = { version = "0.4", default-features = false, features = ["util"] } tracing = { version = "0.1.34", default-features = false } @@ -87,7 +87,7 @@ quickcheck_macros = "1" proptest = "1.3" similar-asserts = "1.5.0" tokio-test = "0.4.3" -toml = { version = "0.8.2", default-features = false, features = ["parse"] } +toml = { version = "0.8.3", default-features = false, features = ["parse"] } ndarray = "0.15.6" ndarray-stats = "0.5.1" noisy_float = "0.2.0" diff --git a/vdev/Cargo.toml b/vdev/Cargo.toml index f8c8dbd68e005..54bd6bcfd1bbc 100644 --- a/vdev/Cargo.toml +++ b/vdev/Cargo.toml @@ -37,4 +37,4 @@ serde_json = "1.0.107" serde_yaml = "0.9.25" sha2 = "0.10.8" tempfile = "3.8.0" -toml = { version = "0.8.2", default-features = false, features = ["parse"] } +toml = { version = "0.8.3", default-features = false, features = ["parse"] }