diff --git a/Cargo.lock b/Cargo.lock index c0f447e..a113494 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -111,7 +111,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d16d90359e986641506914ba71350897565610e87ce0ad9e6f28569db3dd5c6d" dependencies = [ "find-msvc-tools", - "shlex", + "shlex 1.3.0", ] [[package]] @@ -334,7 +334,7 @@ dependencies = [ "serde_yaml", "sha2 0.11.0", "shell-words", - "shlex", + "shlex 2.0.0", "simplelog", "structopt", "tempfile", @@ -1047,6 +1047,12 @@ version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" +[[package]] +name = "shlex" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f70fe4c6ac787e57441913f82b210e668fb2033613bc7a76909cd8afce8bb1f" + [[package]] name = "simplelog" version = "0.12.2" diff --git a/Cargo.toml b/Cargo.toml index b3e0e76..09e3174 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ uuid = { version = "1.16", features = ["v4"] } yaml-rust2 = "0.11.0" simplelog = "0.12" nix = { version = "0.31", default-features = false, features = ["user"] } -shlex = "1.3" +shlex = "2.0" sha2 = "0.11.0" anyhow = "1.0.98" thiserror = "2.0.12"