-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 753 Bytes
/
Copy pathCargo.toml
File metadata and controls
29 lines (25 loc) · 753 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
[workspace]
members = ["driver"]
[package]
name = "squeezed"
version = "0.2.1"
edition = "2021"
description = "Serve a raw PCM audio stream to any Squeezelite / Squeezebox client over the SlimProto protocol."
license = "MIT"
readme = "README.md"
repository = "https://github.com/tsirysndr/squeezed"
keywords = ["squeezebox", "slimproto", "squeezelite", "audio", "streaming"]
categories = ["multimedia::audio", "command-line-utilities"]
[[bin]]
name = "squeezed"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
toml = "0.8"
anyhow = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[profile.release]
lto = true
strip = true