-
-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (41 loc) · 1006 Bytes
/
Cargo.toml
File metadata and controls
43 lines (41 loc) · 1006 Bytes
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
37
38
39
40
41
42
43
[package]
name = "impala"
version = "0.7.4"
authors = ["Badr Badri <contact@pythops.com>"]
license = "GPL-3.0"
edition = "2024"
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.29", default-features = false, features = [
"event-stream",
] }
ratatui = "0.30"
tui-input = { version = "0.15", features = [
"crossterm",
], default-features = false }
tokio = { version = "1", features = ["full"] }
futures = "0.3"
dirs = "6"
serde = { version = "1", features = ["derive"] }
toml = "1"
clap = { version = "4", features = ["derive", "cargo"] }
anyhow = "1"
iwdrs = "0.2.6"
chrono = "0.4"
log = "0.4"
env_logger = "0.11"
strum = { version = "0.28", features = ["derive"] }
strum_macros = "0.28"
libc = "0.2"
hex = "0.4.3"
tui-qrcode = "0.2.2"
qrcode = "0.14.1"
[profile.release]
strip = true
lto = "fat"
codegen-units = 1
opt-level = 3