-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 896 Bytes
/
Copy pathCargo.toml
File metadata and controls
29 lines (26 loc) · 896 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
[package]
name = "freemdu-tui"
version = "0.1.0"
edition = "2024"
repository = "https://github.com/medusalix/FreeMDU"
license = "MIT OR Apache-2.0"
[dependencies]
anyhow = "1.0.102"
clap = { version = "4.6.0", features = ["derive"] }
crossterm = { version = "0.29.0", features = ["event-stream"] }
env_logger = { version = "0.11.10", default-features = false, features = [
"auto-color",
"humantime",
] }
freemdu = { path = "../protocol", features = ["native-serial"] }
futures = "0.3.32"
log = "0.4.29"
ratatui = { version = "0.30.0", features = ["unstable-rendered-line-info"] }
tokio = { version = "1.52.0", features = ["rt", "sync", "time", "macros"] }
tui-input = { version = "0.14.0", default-features = false, features = ["crossterm"] }
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
cast_possible_truncation = "allow"
[profile.release]
lto = true
codegen-units = 1