From 56980cf79a0fc17d6d99c4e779193d8df3b6eca8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 4 Jun 2024 08:43:30 +0000 Subject: [PATCH] Bump toml from 0.8.8 to 0.8.14 Bumps [toml](https://github.com/toml-rs/toml) from 0.8.8 to 0.8.14. - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.8...toml-v0.8.14) --- updated-dependencies: - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 24 ++++++++++++------------ northstar-runtime/Cargo.toml | 4 ++-- northstar/Cargo.toml | 2 +- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3d1f0d61f..46ce014a1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1534,7 +1534,7 @@ dependencies = [ "serde", "time", "tokio", - "toml 0.8.8", + "toml 0.8.14", ] [[package]] @@ -1623,7 +1623,7 @@ dependencies = [ "tokio", "tokio-eventfd", "tokio-util", - "toml 0.8.8", + "toml 0.8.14", "umask", "url", "uuid", @@ -2261,9 +2261,9 @@ dependencies = [ [[package]] name = "serde_spanned" -version = "0.6.5" +version = "0.6.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1" +checksum = "79e674e01f999af37c49f70a6ede167a8a60b2503e56c5599532a65baa5969a0" dependencies = [ "serde", ] @@ -2699,9 +2699,9 @@ dependencies = [ [[package]] name = "toml" -version = "0.8.8" +version = "0.8.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1a195ec8c9da26928f773888e0742ca3ca1040c6cd859c919c9f59c1954ab35" +checksum = "6f49eb2ab21d2f26bd6db7bf383edc527a7ebaee412d17af4d40fdccd442f335" dependencies = [ "serde", "serde_spanned", @@ -2711,18 +2711,18 @@ dependencies = [ [[package]] name = "toml_datetime" -version = "0.6.5" +version = "0.6.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" +checksum = "4badfd56924ae69bcc9039335b2e017639ce3f9b001c393c1b2d1ef846ce2cbf" dependencies = [ "serde", ] [[package]] name = "toml_edit" -version = "0.21.0" +version = "0.22.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d34d383cd00a163b4a5b85053df514d45bc330f6de7737edfe0a93311d1eaa03" +checksum = "f21c7aaf97f1bd9ca9d4f9e73b0a6c74bd5afef56f2bc931943a6e1c37e04e38" dependencies = [ "indexmap 2.2.6", "serde", @@ -3279,9 +3279,9 @@ checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8" [[package]] name = "winnow" -version = "0.5.0" +version = "0.6.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81fac9742fd1ad1bd9643b991319f72dd031016d44b77039a26977eb667141e7" +checksum = "56c52728401e1dc672a56e81e593e912aa54c78f40246869f78359a2bf24d29d" dependencies = [ "memchr", ] diff --git a/northstar-runtime/Cargo.toml b/northstar-runtime/Cargo.toml index f79ab57a2..3c9a9b893 100644 --- a/northstar-runtime/Cargo.toml +++ b/northstar-runtime/Cargo.toml @@ -55,7 +55,7 @@ thiserror = "1.0.56" tokio = { version = "1.32.0", features = ["fs", "io-std", "io-util", "macros", "process", "rt-multi-thread", "sync", "time", "net"], optional = true } tokio-eventfd = { version = "0.2.1", optional = true } tokio-util = { version = "0.7.10", features = ["codec", "io"], optional = true } -toml = { version = "0.8.8", optional = true } +toml = { version = "0.8.14", optional = true } umask = { version = "2.1.0", optional = true } url = { version = "2.5.0", features = ["serde"], optional = true } uuid = { version = "1.7.0", features = ["v4"], optional = true } @@ -77,7 +77,7 @@ proptest = "1.4.0" rstest = { version = "0.18.1", default-features = false } serde_json = "1.0.108" tokio = { version = "1.32.0", features = ["test-util"] } -toml = "0.8.8" +toml = "0.8.14" [build-dependencies] anyhow = "1.0.80" diff --git a/northstar/Cargo.toml b/northstar/Cargo.toml index 001cca6d2..06bee54b7 100644 --- a/northstar/Cargo.toml +++ b/northstar/Cargo.toml @@ -16,7 +16,7 @@ log = { version = "0.4.21", features = ["std"] } nix = { version = "0.28.0", default-features = false, features = ["sched", "mount"] } northstar-runtime = { version = "^0.9.2-pre", path = "../northstar-runtime", features = ["runtime", "rexec"] } tokio = { version = "1.32.0", features = ["rt-multi-thread", "macros", "signal"] } -toml = "0.8.8" +toml = "0.8.14" [target.'cfg(not(target_os = "android"))'.dependencies] bincode = "1.3.3"