-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
35 lines (33 loc) · 812 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 = "impala"
version = "0.2.4"
authors = ["Badr Badri <[email protected]>"]
license = "GPL-3.0"
edition = "2021"
description = "TUI for managing wifi"
readme = "Readme.md"
homepage = "https://github.com/pythops/impala"
repository = "https://github.com/pythops/impala"
[dependencies]
async-channel = "2"
crossterm = { version = "0.28", default-features = false, features = [
"event-stream",
] }
ratatui = "0.29"
tui-input = "0.11"
tokio = { version = "1", features = ["full"] }
futures = "0.3"
dirs = "5"
serde = { version = "1", features = ["derive"] }
toml = { version = "0.8" }
clap = { version = "4", features = ["derive", "cargo"] }
terminal-light = "1"
anyhow = "1"
iwdrs = "0.1"
chrono = "0.4"
log = "0.4"
env_logger = "0.11"
[profile.release]
strip = true
lto = "fat"
codegen-units = 1