diff --git a/Cargo.lock b/Cargo.lock index 98f9ecaad..165c099f9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -836,6 +836,12 @@ dependencies = [ "termcolor", ] +[[package]] +name = "equivalent" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88bffebc5d80432c9b140ee17875ff173a8ab62faad5b257da912bd2f6c1c0a1" + [[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" @@ -1529,7 +1551,7 @@ dependencies = [ "serde", "time", "tokio", - "toml 0.7.3", + "toml 0.7.5", ] [[package]] @@ -1619,7 +1641,7 @@ dependencies = [ "tokio-eventfd", "tokio-test", "tokio-util", - "toml 0.7.3", + "toml 0.7.5", "umask", "url", "uuid", @@ -2231,9 +2253,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", ] @@ -2247,7 +2269,7 @@ dependencies = [ "base64", "chrono", "hex", - "indexmap", + "indexmap 1.9.3", "serde", "serde_json", "serde_with_macros", @@ -2272,7 +2294,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", @@ -2687,9 +2709,9 @@ dependencies = [ [[package]] name = "toml" -version = "0.7.3" +version = "0.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b403acf6f2bb0859c93c7f0d967cb4a75a7ac552100f9322faf64dc047669b21" +checksum = "1ebafdf5ad1220cb59e7d17cf4d2c72015297b75b19a10472f99b89225089240" dependencies = [ "serde", "serde_spanned", @@ -2699,20 +2721,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.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "239410c8609e8125456927e6707163a3b1fdb40561e4b803bc041f466ccfdc13" +checksum = "266f016b7f039eec8a1a80dfe6156b633d208b9fccca5e4db1d6775b0c4e34a7" dependencies = [ - "indexmap", + "indexmap 2.0.0", "serde", "serde_spanned", "toml_datetime", @@ -3222,9 +3244,9 @@ checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" [[package]] name = "winnow" -version = "0.4.1" +version = "0.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae8970b36c66498d8ff1d66685dc86b91b29db0c7739899012f63a63814b4b28" +checksum = "ca0ace3845f0d96209f0375e6d367e3eb87eb65d27d445bdc9f1843a26f39448" dependencies = [ "memchr", ] diff --git a/northstar-runtime/Cargo.toml b/northstar-runtime/Cargo.toml index 0f575e5e9..18755c83d 100644 --- a/northstar-runtime/Cargo.toml +++ b/northstar-runtime/Cargo.toml @@ -57,7 +57,7 @@ thiserror = "1.0.40" tokio = { version = "1.28.0", 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.5", optional = true } umask = { version = "2.1.0", optional = true } url = { version = "2.3.1", features = ["serde"], optional = true } uuid = { version = "1.3.2", features = ["v4"], optional = true } @@ -79,7 +79,7 @@ proptest = "1.1.0" serde_json = "1.0.95" tokio = { version = "1.28.0", features = ["test-util"] } tokio-test = "0.4.2" -toml = "0.7.3" +toml = "0.7.5" [build-dependencies] anyhow = { version = "1.0.71", features = ["backtrace"] } diff --git a/northstar/Cargo.toml b/northstar/Cargo.toml index 98aef07b5..30ee06746 100644 --- a/northstar/Cargo.toml +++ b/northstar/Cargo.toml @@ -16,7 +16,7 @@ log = "0.4.17" 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.28.0", features = ["rt-multi-thread", "macros", "signal"] } -toml = "0.7.3" +toml = "0.7.5" [target.'cfg(not(target_os = "android"))'.dependencies] bincode = "1.3.3"