-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (29 loc) · 841 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
[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.0.27", features=["derive"]}
directories = "4.0"
colored = "2"
anyhow="1.0"
open = "1"
regex = "1.6.0"
dialoguer = {version = "0.10.2", features=["fuzzy-select"]}
console = "0.15.1"
tabled = {version = "0.8.0", features=["color"]}
[[bin]]
name = "q"
path = "src/bin/q/main.rs"
[[bin]]
name = "qali"
path = "src/bin/qali/main.rs"