Skip to content

Commit 0b7975b

Browse files
authored
Merge pull request #1633 from mo8it/clap
Port to Clap
2 parents 2d1da2a + 362318a commit 0b7975b

File tree

4 files changed

+213
-137
lines changed

4 files changed

+213
-137
lines changed

Cargo.lock

Lines changed: 119 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,16 @@ edition = "2021"
1010

1111
[dependencies]
1212
argh = "0.1"
13-
indicatif = "0.17"
13+
indicatif = "0.17.6"
1414
console = "0.15"
1515
notify = "4.0"
16-
toml = "0.7"
17-
regex = "1.9"
16+
toml = "0.7.6"
17+
regex = "1.5"
1818
serde = { version = "1.0", features = ["derive"] }
19-
serde_json = "1.0.105"
20-
home = "0.5.5"
21-
glob = "0.3.1"
19+
serde_json = "1.0.81"
20+
home = "0.5.3"
21+
glob = "0.3.0"
22+
clap = { version = "4.4.0", features = ["derive"] }
2223

2324
[[bin]]
2425
name = "rustlings"
@@ -27,4 +28,4 @@ path = "src/main.rs"
2728
[dev-dependencies]
2829
assert_cmd = "2.0.12"
2930
predicates = "3.0.3"
30-
glob = "0.3.1"
31+
glob = "0.3.0"

0 commit comments

Comments
 (0)