summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authormo8it <mo8it@proton.me>2023-08-25 23:18:01 +0200
committerliv <shadows_withal@fastmail.com>2023-09-04 13:30:46 +0200
commit5a93f2a4f14d83d34aac69254262da7aaa5b752c (patch)
treefeef7dd69d154fc2ea6c5875b72ee0bdad3e27b4 /Cargo.toml
parent2d1da2ab57080e32725612ffddb82006f47f7f71 (diff)
Port to Clap
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml15
1 files changed, 8 insertions, 7 deletions
diff --git a/Cargo.toml b/Cargo.toml
index f627dd7..2c2a92b 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -10,15 +10,16 @@ edition = "2021"
[dependencies]
argh = "0.1"
-indicatif = "0.17"
+indicatif = "0.17.6"
console = "0.15"
notify = "4.0"
-toml = "0.7"
-regex = "1.9"
+toml = "0.7.6"
+regex = "1.5"
serde = { version = "1.0", features = ["derive"] }
-serde_json = "1.0.105"
-home = "0.5.5"
-glob = "0.3.1"
+serde_json = "1.0.81"
+home = "0.5.3"
+glob = "0.3.0"
+clap = { version = "4.4.0", features = ["derive"] }
[[bin]]
name = "rustlings"
@@ -27,4 +28,4 @@ path = "src/main.rs"
[dev-dependencies]
assert_cmd = "2.0.12"
predicates = "3.0.3"
-glob = "0.3.1"
+glob = "0.3.0"