-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
26 lines (25 loc) · 873 Bytes
/
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
[package]
name = "cargo-selector"
version = "0.8.0"
edition = "2021"
description = "Cargo subcommand to select and execute binary/example targets"
authors = ["Kyosuke Fujimoto <[email protected]>"]
homepage = "https://github.com/lusingander/cargo-selector"
repository = "https://github.com/lusingander/cargo-selector"
readme = "README.md"
license = "MIT"
keywords = ["cargo", "subcommand", "plugin", "tui"]
categories = ["development-tools::cargo-plugins", "command-line-utilities"]
exclude = ["/.github", "/img", "_config.yml"]
rust-version = "1.79.0"
[dependencies]
cargo_metadata = "0.19.1"
clap = { version = "4.5.30", features = ["derive"] }
console = "0.15.10"
fuzzy-matcher = "0.3.7"
laurier = "0.1.0"
ratatui = { version = "0.29.0", features = ["serde"] }
serde = { version = "1.0.218", features = ["derive"] }
toml = "0.8.20"
tui-input = "0.11.1"
umbra = "0.3.0"