From 0197f45399aa971f50347c5507c5735e4792482b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 Mar 2023 20:01:58 +0000 Subject: [PATCH] build(deps): bump toml from 0.7.2 to 0.7.3 (#6317) Bumps [toml](https://github.com/toml-rs/toml) from 0.7.2 to 0.7.3. - [Release notes](https://github.com/toml-rs/toml/releases) - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.7.2...toml-v0.7.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 | 32 ++++++++++++++++---------------- zebra-network/Cargo.toml | 2 +- zebrad/Cargo.toml | 2 +- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 827ea853..586a293b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2651,15 +2651,6 @@ dependencies = [ "version_check", ] -[[package]] -name = "nom8" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae01545c9c7fc4486ab7debaf2aad7003ac19431791868fb2e8066df97fad2f8" -dependencies = [ - "memchr", -] - [[package]] name = "nonempty" version = "0.7.0" @@ -4611,9 +4602,9 @@ dependencies = [ [[package]] name = "toml" -version = "0.7.2" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7afcae9e3f0fe2c370fd4657108972cbb2fa9db1b9f84849cefd80741b01cb6" +checksum = "b403acf6f2bb0859c93c7f0d967cb4a75a7ac552100f9322faf64dc047669b21" dependencies = [ "serde", "serde_spanned", @@ -4632,15 +4623,15 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.19.3" +version = "0.19.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e6a7712b49e1775fb9a7b998de6635b299237f48b404dde71704f2e0e7f37e5" +checksum = "dc18466501acd8ac6a3f615dd29a3438f8ca6bb3b19537138b3106e575621274" dependencies = [ "indexmap", - "nom8", "serde", "serde_spanned", "toml_datetime", + "winnow", ] [[package]] @@ -5469,6 +5460,15 @@ version = "0.42.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd" +[[package]] +name = "winnow" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "23d020b441f92996c80d94ae9166e8501e59c7bb56121189dc9eab3bd8216966" +dependencies = [ + "memchr", +] + [[package]] name = "winreg" version = "0.10.1" @@ -5799,7 +5799,7 @@ dependencies = [ "tokio", "tokio-stream", "tokio-util 0.7.7", - "toml 0.7.2", + "toml 0.7.3", "tower", "tracing", "tracing-error", @@ -5984,7 +5984,7 @@ dependencies = [ "tinyvec", "tokio", "tokio-stream", - "toml 0.7.2", + "toml 0.7.3", "tonic", "tonic-build", "tower", diff --git a/zebra-network/Cargo.toml b/zebra-network/Cargo.toml index 6691a079..5f6034e9 100644 --- a/zebra-network/Cargo.toml +++ b/zebra-network/Cargo.toml @@ -58,7 +58,7 @@ proptest-derive = "0.3.0" static_assertions = "1.1.0" tokio = { version = "1.26.0", features = ["full", "tracing", "test-util"] } -toml = "0.7.2" +toml = "0.7.3" zebra-chain = { path = "../zebra-chain", features = ["proptest-impl"] } zebra-test = { path = "../zebra-test/" } diff --git a/zebrad/Cargo.toml b/zebrad/Cargo.toml index 00abfcb2..a79f060a 100644 --- a/zebrad/Cargo.toml +++ b/zebrad/Cargo.toml @@ -109,7 +109,7 @@ humantime-serde = "1.1.1" indexmap = "1.9.2" lazy_static = "1.4.0" serde = { version = "1.0.156", features = ["serde_derive"] } -toml = "0.7.2" +toml = "0.7.3" futures = "0.3.27" rayon = "1.7.0"