fix: update shlex

This commit is contained in:
Ashley Wulber 2024-01-22 17:00:11 -05:00 committed by Jeremy Soller
parent 70646bcc92
commit 79c962abdd
2 changed files with 6 additions and 6 deletions

10
Cargo.lock generated
View file

@ -1268,7 +1268,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e16e44ab292b1dddfdaf7be62cfd8877df52f2f3fde5858d95bab606be259f20"
dependencies = [
"bitflags 2.4.2",
"libloading 0.7.4",
"libloading 0.8.1",
"winapi",
]
@ -1534,7 +1534,7 @@ version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412"
dependencies = [
"libloading 0.7.4",
"libloading 0.8.1",
]
[[package]]
@ -4484,9 +4484,9 @@ dependencies = [
[[package]]
name = "shlex"
version = "1.2.0"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380"
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
[[package]]
name = "signal-hook-registry"
@ -5793,7 +5793,7 @@ dependencies = [
"js-sys",
"khronos-egl",
"libc",
"libloading 0.7.4",
"libloading 0.8.1",
"log",
"metal",
"naga",

View file

@ -18,7 +18,7 @@ tracing-subscriber.workspace = true
tracing-log.workspace = true
tracing.workspace = true
nix = "0.26"
shlex = "1.1.0"
shlex = "1.3.0"
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
log = "0.4"