From f80a60f6a46680c598e9f87b37b2c260985e1f55 Mon Sep 17 00:00:00 2001 From: exlier <290591388+exlier@users.noreply.github.com> Date: Tue, 11 Aug 2026 09:04:15 +0530 Subject: [PATCH] Swap tokenization to shlex; add globset and shellexpand --- Cargo.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index a830b4d..a14404d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,3 +18,8 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" wasmtime = "11" wat = "1.0" + +# tokenization / globbing +shlex = "1.1" +globset = "0.4" +shellexpand = "2.1"