From 44358bc37307346ab054811c7561ad095263a4f5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 18 Jul 2023 14:36:48 +0000 Subject: [PATCH] Bump toml from 0.7.3 to 0.7.6 (#997) --- Cargo.lock | 54 +++++++++++++++++++++++++----------- northstar-runtime/Cargo.toml | 4 +-- northstar/Cargo.toml | 2 +- 3 files changed, 41 insertions(+), 19 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 620d840ac..bf1cc3326 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -836,6 +836,12 @@ dependencies = [ "termcolor", ] +[[package]] +name = "equivalent" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" + [[package]] name = "errno" version = "0.2.8" @@ -1050,6 +1056,12 @@ version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" +[[package]] +name = "hashbrown" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" + [[package]] name = "heck" version = "0.3.3" @@ -1204,10 +1216,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" dependencies = [ "autocfg", - "hashbrown", + "hashbrown 0.12.3", "serde", ] +[[package]] +name = "indexmap" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d" +dependencies = [ + "equivalent", + "hashbrown 0.14.0", +] + [[package]] name = "inotify" version = "0.10.0" @@ -1528,7 +1550,7 @@ dependencies = [ "serde", "time", "tokio", - "toml 0.7.3", + "toml 0.7.6", ] [[package]] @@ -1618,7 +1640,7 @@ dependencies = [ "tokio-eventfd", "tokio-test", "tokio-util", - "toml 0.7.3", + "toml 0.7.6", "umask", "url", "uuid", @@ -2223,9 +2245,9 @@ dependencies = [ [[package]] name = "serde_spanned" -version = "0.6.1" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0efd8caf556a6cebd3b285caf480045fcc1ac04f6bd786b09a6f11af30c4fcf4" +checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186" dependencies = [ "serde", ] @@ -2239,7 +2261,7 @@ dependencies = [ "base64", "chrono", "hex", - "indexmap", + "indexmap 1.9.3", "serde", "serde_json", "serde_with_macros", @@ -2264,7 +2286,7 @@ version = "0.9.21" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d9d684e3ec7de3bf5466b32bd75303ac16f0736426e5a4e0d6e489559ce1249c" dependencies = [ - "indexmap", + "indexmap 1.9.3", "itoa", "ryu", "serde", @@ -2680,9 +2702,9 @@ dependencies = [ [[package]] name = "toml" -version = "0.7.3" +version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b403acf6f2bb0859c93c7f0d967cb4a75a7ac552100f9322faf64dc047669b21" +checksum = "c17e963a819c331dcacd7ab957d80bc2b9a9c1e71c804826d2f283dd65306542" dependencies = [ "serde", "serde_spanned", @@ -2692,20 +2714,20 @@ dependencies = [ [[package]] name = "toml_datetime" -version = "0.6.1" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ab8ed2edee10b50132aed5f331333428b011c99402b5a534154ed15746f9622" +checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" dependencies = [ "serde", ] [[package]] name = "toml_edit" -version = "0.19.8" +version = "0.19.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "239410c8609e8125456927e6707163a3b1fdb40561e4b803bc041f466ccfdc13" +checksum = "f8123f27e969974a3dfba720fdb560be359f57b44302d280ba72e76a74480e8a" dependencies = [ - "indexmap", + "indexmap 2.0.0", "serde", "serde_spanned", "toml_datetime", @@ -3200,9 +3222,9 @@ checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" [[package]] name = "winnow" -version = "0.4.1" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae8970b36c66498d8ff1d66685dc86b91b29db0c7739899012f63a63814b4b28" +checksum = "81fac9742fd1ad1bd9643b991319f72dd031016d44b77039a26977eb667141e7" dependencies = [ "memchr", ] diff --git a/northstar-runtime/Cargo.toml b/northstar-runtime/Cargo.toml index 1d95e7bfe..7cd2bf124 100644 --- a/northstar-runtime/Cargo.toml +++ b/northstar-runtime/Cargo.toml @@ -57,7 +57,7 @@ thiserror = "1.0.40" tokio = { version = "1.29.1", features = ["fs", "io-std", "io-util", "macros", "process", "rt-multi-thread", "sync", "time", "net"], optional = true } tokio-eventfd = { version = "0.2.0", optional = true } tokio-util = { version = "0.7.8", features = ["codec", "io"], optional = true } -toml = { version = "0.7.3", optional = true } +toml = { version = "0.7.6", optional = true } umask = { version = "2.1.0", optional = true } url = { version = "2.3.1", features = ["serde"], optional = true } uuid = { version = "1.4.1", features = ["v4"], optional = true } @@ -79,7 +79,7 @@ proptest = "1.2.0" serde_json = "1.0.95" tokio = { version = "1.29.1", features = ["test-util"] } tokio-test = "0.4.2" -toml = "0.7.3" +toml = "0.7.6" [build-dependencies] anyhow = { version = "1.0.71", features = ["backtrace"] } diff --git a/northstar/Cargo.toml b/northstar/Cargo.toml index 1d5f06b96..060cd0ab9 100644 --- a/northstar/Cargo.toml +++ b/northstar/Cargo.toml @@ -16,7 +16,7 @@ log = "0.4.19" nix = { version = "0.26.2", default-features = false, features = ["sched", "mount"] } northstar-runtime = { version = "^0.8.2-pre", path = "../northstar-runtime", features = ["runtime", "rexec"] } tokio = { version = "1.29.1", features = ["rt-multi-thread", "macros", "signal"] } -toml = "0.7.3" +toml = "0.7.6" [target.'cfg(not(target_os = "android"))'.dependencies] bincode = "1.3.3"