-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
31 lines (29 loc) · 921 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
[package]
name = "roon-tui"
version = "0.3.2"
authors = ["The Appgineer <[email protected]>"]
edition = "2021"
license-file = "LICENSE"
readme = "README.md"
repository = "https://github.com/theappgineer/roon-tui"
publish = false
[dependencies]
log = "0.4"
simplelog = "0.12"
time = "0.3"
chrono = { version = "0.4", features = ["clock"], default-features = false }
ratatui = { version = "0.25.0", features = ["crossterm"], default-features = false }
crossterm = "0.27.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.24.1", features = ["macros", "rt-multi-thread"] }
eyre = "0.6"
any_ascii = "0.3.2"
rand = "0.8.5"
clap = { version = "4.4.4", features = ["derive"] }
roon-api = { git = "https://github.com/TheAppgineer/rust-roon-api.git", tag = "0.1.1", features = ["browse", "transport"] }
[profile.release]
strip = true
opt-level = "s"
lto = true
codegen-units = 1