summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorJustin Wernick <justin@worthe-it.co.za>2023-02-27 23:12:32 +0200
committerJustin Wernick <justin@worthe-it.co.za>2023-02-27 23:12:32 +0200
commit9f0f47abaa934b66da5b302236bfc89f95a7f329 (patch)
tree37b20fa001c42e61da54ada3a905fda6463fe050 /Cargo.lock
parent5ac9161b7edabbb95c1f8a5d68af62a567687190 (diff)
Revamp parsing to support more complex commands
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock18
1 files changed, 18 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index e609fb7..332101e 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -134,6 +134,12 @@ dependencies = [
]
[[package]]
+name = "minimal-lexical"
+version = "0.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
+
+[[package]]
name = "nix"
version = "0.25.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -148,6 +154,16 @@ dependencies = [
]
[[package]]
+name = "nom"
+version = "7.1.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
+dependencies = [
+ "memchr",
+ "minimal-lexical",
+]
+
+[[package]]
name = "once_cell"
version = "1.17.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -270,7 +286,9 @@ version = "0.1.0"
dependencies = [
"anyhow",
"assert_cmd",
+ "nom",
"rexpect",
+ "thiserror",
]
[[package]]