diff --git a/Cargo.lock b/Cargo.lock index 0df7fd73..76449570 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -251,6 +251,12 @@ dependencies = [ "windows-sys 0.45.0", ] +[[package]] +name = "equivalent" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" + [[package]] name = "errno" version = "0.3.1" @@ -349,6 +355,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.4.1" @@ -391,7 +403,7 @@ dependencies = [ "clap", "git2", "glob", - "indexmap", + "indexmap 2.0.0", "pep440_rs", "pep508_rs", "pyproject-toml", @@ -438,7 +450,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" dependencies = [ "autocfg", - "hashbrown", + "hashbrown 0.12.3", +] + +[[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", "serde", ] @@ -666,9 +688,9 @@ dependencies = [ [[package]] name = "pep508_rs" -version = "0.1.2" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14fe98061405d55ce70bd248bd7a42846810d83b244f2bba29a100ee3105dd33" +checksum = "c0713d7bb861ca2b7d4c50a38e1f31a4b63a2e2df35ef1e5855cc29e108453e2" dependencies = [ "once_cell", "pep440_rs", @@ -709,11 +731,11 @@ dependencies = [ [[package]] name = "pyproject-toml" -version = "0.5.1" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "71c24ad9fa3f11e0b5f45bf86ea6e1ae4dfef288fb7b077a15b6a19ebc87a37f" +checksum = "569e259cd132eb8cec5df8b672d187c5260f82ad352156b5da9549d4472e64b0" dependencies = [ - "indexmap", + "indexmap 2.0.0", "pep440_rs", "pep508_rs", "serde", @@ -925,7 +947,7 @@ version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b403acf6f2bb0859c93c7f0d967cb4a75a7ac552100f9322faf64dc047669b21" dependencies = [ - "indexmap", + "indexmap 1.9.3", "serde", "serde_spanned", "toml_datetime", @@ -947,7 +969,7 @@ version = "0.19.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "239410c8609e8125456927e6707163a3b1fdb40561e4b803bc041f466ccfdc13" dependencies = [ - "indexmap", + "indexmap 1.9.3", "serde", "serde_spanned", "toml_datetime", diff --git a/Cargo.toml b/Cargo.toml index 4df366c7..c66a4d73 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,2 +1,2 @@ [workspace] -members = ["crates/*"] \ No newline at end of file +members = ["crates/*"] diff --git a/crates/huak_ops/Cargo.toml b/crates/huak_ops/Cargo.toml index 0e090308..ddd86133 100644 --- a/crates/huak_ops/Cargo.toml +++ b/crates/huak_ops/Cargo.toml @@ -11,10 +11,10 @@ doctest = false clap = { version = "4.3.11", features = ["cargo", "derive"] } git2 = "0.17.2" glob = "0.3.1" -indexmap = "1.9.3" +indexmap = "2.0.0" pep440_rs = "0.3.9" -pep508_rs = "0.1.2" -pyproject-toml = "0.5.1" +pep508_rs = "0.2.1" +pyproject-toml = "0.7.0" serde = { version = "1.0.163", features = ["derive"] } serde_json = "1.0.96" termcolor = "1.2.0"