-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
69 lines (64 loc) · 2.33 KB
/
Copy pathCargo.toml
File metadata and controls
69 lines (64 loc) · 2.33 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[package]
name = "termtastic"
# unused, app version propagated by git tags
version = "0.0.0"
edition = "2024"
authors = ["acelot <provaleriy@gmail.com>"]
description = "Feature-rich Meshtastic® console client"
publish = false
license-file = "LICENSE"
repository = "https://github.com/acelot/termtastic"
readme = "README.md"
keywords = ["cli", "tui", "meshtastic"]
build = "build.rs"
[[bin]]
name = "termtastic"
path = "src/main.rs"
[profile.release]
opt-level = "z"
lto = true
strip = true
[target.'cfg(target_os = "linux")'.dependencies]
libdbus-sys = { version = "0.2", features = ["vendored"] }
[lints.clippy]
single_match = "allow"
[dependencies]
ansi-to-tui = { version = "8.0.1" }
anyhow = { version = "1.0.102" }
arboard = { version = "3.6.1", features = ["wayland-data-control"] }
base64 = { version = "0.22.1" }
btleplug = { version = "0.12.0" }
chrono = { version = "0.4.45", features = ["serde"] }
confy = { version = "2.0.0", default-features = false, features = ["ron_conf"] }
crossterm = { version = "0.29.0", features = ["event-stream"] }
emoji = { version = "0.2.1" }
etcetera = { version = "0.11.0" }
fastrand = { version = "2.4.1" }
futures = { version = "0.3.32" }
hostaddr = { version = "0.2.4", features = ["serde"] }
itertools = { version = "0.15.0" }
mdns-sd = { version = "0.20.0" }
meshtastic = { version = "0.1.9", features = ["bluetooth-le"] }
nameof = { version = "1.3.0" }
ordermap = { version = "1.2.0", features = ["serde"] }
paste = { version = "1.0" }
ratatui = { version = "0.30.2", features = ["unstable-rendered-line-info"] }
ratatui-textarea = { version = "0.9.1" }
regex = { version = "1.12" }
rusqlite = { version = "0.40.1", features = ["bundled"] }
rusqlite_migration = { version = "2.6.0" }
serde = { version = "1.0.228" }
serde_json = { version = "1.0" }
serde_rusqlite = { version = "0.43.0" }
serde_sqlite_jsonb = { version = "0.2.1" }
strum = { version = "0.28.0", features = ["derive"] }
thiserror = { version = "2.0.18" }
tokio = { version = "1.52.1", features = ["full"] }
tokio-graceful-shutdown = { version = "0.19.3" }
tokio-rusqlite-new = { version = "0.14.0" }
tracing = { version = "0.1.44" }
tracing-appender = { version = "0.2.5" }
tracing-subscriber = { version = "0.3.23", features = ["fmt", "env-filter"] }
tracing-unwrap = { version = "1.0.1" }
tui-widget-list = { version = "0.15.2" }
unicode-width = { version = "0.2.2" }