-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (31 loc) · 869 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
27
28
29
30
31
32
33
34
35
[package]
name = "qali"
version = "0.5.1"
edition = "2021"
authors = ["contact@jettchen.me"]
license = "MIT/Apache-2.0"
description = "QALI: Quick ALIasing in the terminal"
readme = "README.md"
homepage = "https://github.com/JettChenT/qali"
repository = "https://github.com/JettChenT/qali"
keywords = ["cli", "productivity", "aliasing"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5.31", features = ["derive"] }
directories = "6.0"
colored = "3"
anyhow = "1.0"
open = "5"
regex = "1.11.1"
dialoguer = { version = "0.11.0", features = ["fuzzy-select"] }
console = "0.15.11"
tabled = { version = "0.18.0" }
which = "7.0.2"
ctrlc = "3.4.5"
[[bin]]
name = "q"
path = "src/bin/q/main.rs"
[[bin]]
name = "qali"
path = "src/bin/qali/main.rs"