diff --git a/packer/Cargo.lock b/packer/Cargo.lock index baebca0c8..def1eb21f 100644 --- a/packer/Cargo.lock +++ b/packer/Cargo.lock @@ -81,7 +81,7 @@ dependencies = [ "bitflags", "clap_derive", "clap_lex", - "indexmap", + "indexmap 1.9.1", "lazy_static", "strsim", "termcolor", @@ -237,6 +237,12 @@ version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" +[[package]] +name = "equivalent" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" + [[package]] name = "filetime" version = "0.2.15" @@ -321,6 +327,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.0" @@ -360,7 +372,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e" 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", ] [[package]] @@ -679,11 +701,11 @@ dependencies = [ [[package]] name = "serde_yaml" -version = "0.9.21" +version = "0.9.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9d684e3ec7de3bf5466b32bd75303ac16f0736426e5a4e0d6e489559ce1249c" +checksum = "da6075b41c7e3b079e5f246eb6094a44850d3a4c25a67c581c80796c80134012" dependencies = [ - "indexmap", + "indexmap 2.0.0", "itoa", "ryu", "serde", diff --git a/packer/Cargo.toml b/packer/Cargo.toml index 6dca4544f..3e8dd6528 100644 --- a/packer/Cargo.toml +++ b/packer/Cargo.toml @@ -14,7 +14,7 @@ clap = { version = "^3", features = ["derive", "cargo"] } shellexpand = "^3" tar = "0.4.38" serde = { version = "^1", features = ["derive"] } -serde_yaml = "0.9.21" +serde_yaml = "0.9.23" anyhow = "^1" sha2 = "0.10.6" data-encoding = "^2"