-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
32 lines (30 loc) · 820 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
[package]
name = "sinuous"
version = "0.1.4"
authors = ["Antoine Busch <antoine.busch@gmail.com>"]
edition = "2021"
description = "A simple TUI for controlling local Sonos speakers"
license = "MIT"
repository = "https://github.com/abusch/sinuous.git"
homepage = "https://github.com/abusch/sinuous"
[dependencies]
anyhow = "1.0.57"
clap = { version = "4.0", features = ["cargo"] }
crossterm = { version = "0.28", features = ["event-stream"] }
futures = "0.3.21"
human-panic = "2.0.0"
ratatui = "0.29"
reqwest = { version = "0.12" }
serde = "1"
serde_derive = "1"
serde_json = "1"
sonor = "2"
tokio = { version = "1.18.2", features = ["full"] }
tracing = "0.1.34"
tracing-appender = "0.2.2"
tracing-subscriber = { version = "0.3.11", features = [
"env-filter",
"tracing-log",
] }
[profile.release]
strip = "symbols"