-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (30 loc) · 967 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
[package]
name = "tuxvantage"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = { version = "1.0.52", features = ["backtrace"] }
atty = "0.2.14"
battery = "0.7.8"
clap = { version = "3.0.0-rc.11", features = ["derive"] }
color-backtrace = "0.5.1"
crossbeam = "0.8.1"
directories = "4.0.1"
env_logger = "0.9.0"
ideapad = { features = ["serde"], git = "https://github.com/ALinuxPerson/ideapad.git", branch = "try-drop" }
itertools = "0.10.3"
log = "0.4.14"
once_cell = "1.9.0"
owo-colors = "3.2.0"
parking_lot = "0.11.2"
paste = "1.0.6"
serde = { version = "1.0.132", features = ["derive"] }
serde_json = "1.0.73"
signal-hook = "0.3.13"
strip-ansi-escapes = "0.1.1"
tap = "1.0.1"
textwrap = "0.14.2"
tokio = { version = "1.16.1", features = ["sync"], default-features = false }
toml = "0.5.8"
try-drop = { git = "https://github.com/ALinuxPerson/try-drop.git" }