-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (34 loc) · 1.1 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
[package]
name = "ynk"
version = "0.9.6"
edition = "2021"
license = "MIT"
keywords = ["yank", "cp", "cli", "tool", "terminal"]
readme = "README.md"
authors = ["Ishan Joshi <noobscience@duck.com>"]
description = "Effortlessly yank and paste files blazingly fast in the terminal"
repository = "https://github.com/newtoallofthis123/ynk"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
atty = "0.2.14"
chrono = "0.4.31"
clap = { version = "4.4.16", features = ["derive", "cargo"] }
clap_complete = "4.5.40"
colored = "2.1.0"
correct_word = "0.2.0"
dirs = "5.0.1"
futures = "0.3.30"
hashbrown = "0.15"
ignore = "0.4.22"
indicatif = { version = "0.17.7", features = ["tokio"] }
inquire = { version = "0.7", default-features = false, features = [
"crossterm",
] }
path_abs = "0.5.1"
rusqlite = { version = "0.32", features = ["bundled"] }
sea-query = "0"
serde = { version = "1.0.195", features = ["derive"] }
tabled = "0.17"
tokio = { version = "1.35.1", features = ["full"] }
toml = { version = "0.8.8", features = ["preserve_order"] }
update-informer = "1.1"