-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
38 lines (35 loc) · 1.26 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "tabry"
version = "0.1.0" # Sync this with the version in ./default.nix
edition = "2021"
description = "Utility (and mini-language) for shell completions (\"tab completion\") for external programs"
license = "MIT"
[dependencies]
clap = { version = "4.5.17", features = ["derive"] }
color-eyre = "0.6.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
shell-words = "1.1.0"
thiserror = "1.0.44"
winnow = "0.6.18"
[dev-dependencies]
assert-json-diff = "2.0.2"
[package.metadata.deb]
maintainer = "Evan Battaglia <[email protected]>"
copyright = "2024, Evan Battaglia <[email protected]>"
license-file = ["LICENSE", "2"]
extended-description = """\
Tabry allows you to easily write tab completion for external \
commands which do not support tab completion, including your \
own scripts and aliases. tabry especially targets CLIs with \
"git-style" subcommands or nested subcommands. \
See https://github.com/evanbattaglia/tabry and \
/usr/share/doc/tabry/README.md for more information."""
depends = "$auto"
section = "utility"
priority = "optional"
assets = [
["target/release/tabry", "usr/bin/", "755"],
["README.md", "usr/share/doc/tabry/README.md", "644"],
["examples/*/*", "usr/share/doc/tabry/examples", "644"]
]