From d5823326eaa75007e0b5b2366f5b324472cc807a Mon Sep 17 00:00:00 2001 From: Ashley Wulber Date: Mon, 22 Jan 2024 17:00:11 -0500 Subject: [PATCH] fix: update shlex --- Cargo.lock | 10 +++++----- cosmic-app-list/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 17b8afa1..9e3eeb9c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/cosmic-app-list/Cargo.toml b/cosmic-app-list/Cargo.toml index c81225c2..b6f03d59 100644 --- a/cosmic-app-list/Cargo.toml +++ b/cosmic-app-list/Cargo.toml @@ -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"