diff options
| author | figsoda <figsoda@pm.me> | 2023-04-06 14:14:01 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-06 20:14:01 +0200 |
| commit | 1c324765e92c23826dff4f37d3b01761a3ac6ef4 (patch) | |
| tree | 1c84390a6ff58545374b7cbfa3c74f82af306558 /Cargo.lock | |
| parent | 75461675c4e57675174d98060124c9e13beaf7e4 (diff) | |
Add shell completions and man pages (#582)
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 27 |
1 files changed, 27 insertions, 0 deletions
@@ -232,6 +232,15 @@ dependencies = [ ] [[package]] +name = "clap_complete" +version = "4.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "01c22dcfb410883764b29953103d9ef7bb8fe21b3fa1158bc99986c2067294bd" +dependencies = [ + "clap", +] + +[[package]] name = "clap_derive" version = "4.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -250,6 +259,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8a2dd5a6fe8c6e3502f568a6353e5273bbb15193ad9a89e457b9970798efbea1" [[package]] +name = "clap_mangen" +version = "0.2.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4237e29de9c6949982ba87d51709204504fb8ed2fd38232fcb1e5bf7d4ba48c8" +dependencies = [ + "clap", + "roff", +] + +[[package]] name = "codespan-reporting" version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1216,6 +1235,12 @@ dependencies = [ ] [[package]] +name = "roff" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b833d8d034ea094b1ea68aa6d5c740e0d04bad9d16568d08ba6f76823a114316" + +[[package]] name = "roxmltree" version = "0.14.1" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1612,6 +1637,8 @@ version = "0.1.0" dependencies = [ "chrono", "clap", + "clap_complete", + "clap_mangen", "codespan-reporting", "comemo", "dirs", |
