File: Cargo.toml

package info (click to toggle)
wiremix 0.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 656 kB
  • sloc: makefile: 25
file content (52 lines) | stat: -rw-r--r-- 1,587 bytes parent folder | download
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
[package]
name = "wiremix"
version = "0.7.0"
authors = ["Thomas Sowell <tom@ldtlb.com>"]
description = "A TUI mixer for PipeWire"
readme = "README.md"
repository = "https://github.com/tsowell/wiremix"
license = "MIT OR Apache-2.0"
categories = ["command-line-utilities", "multimedia::audio"]
keywords = ["mixer", "pipewire", "volume", "audio", "tui"]
edition = "2021"
rust-version = "1.74.1"
include = ["src/**/*", "Cargo.toml", "LICENSE*", "README.md", "wiremix.toml"]
build = "build.rs"

# [build-dependencies]
# vergen-git2 = "1.0.1"

[dependencies]
anyhow = "1.0.95"
clap = { version = "4.5.23", features = ["derive", "wrap_help"] }
crossterm = { version = "0.27.0", features = ["event-stream", "serde"] }
futures = "0.3.31"
futures-timer = "3.0.3"
itertools = "0.13.0"
libspa = "0.8.0"
libspa-sys = "0.8.0"
log = "0.4.26"
nix = { version = "0.29.0", features = ["event", "term"] }
pipewire = { version = "0.8.0", features = ["v0_3_44"] }
ratatui = { version = "0.28.1", features = ["serde"] }
regex = "1.11.1"
scopeguard = "1.2.0"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.143"
serde_with = "3.12.0"
smallvec = "1.15.1"
toml = "0.8.19"
tracing = { version = "0.1.41", optional = true }
tracing-error = { version = "0.2.1", optional = true }
tracing-subscriber = { version = "0.3.19", features = ["env-filter"], optional = true }

[dev-dependencies]
paste = "1.0.15"
strum = { version = "0.27.1", features = ["derive"] }

[features]
trace = ["dep:tracing", "dep:tracing-error", "dep:tracing-subscriber"]

[profile.release]
codegen-units = 1
lto = true