-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
63 lines (49 loc) · 1.77 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "ompl"
version = "0.10.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
colcon = "0.10"
# colcon = { git = "https://github.com/Beinsezii/colcon.git" }
bincode = "1"
bus = "2"
clap = { version = "4", features = ["derive", "unicode"] }
lexical-sort = "0.3"
rand = "0.8"
regex = { package = "regex-lite", version = "0.1" }
serde = { version = "1", features = ["derive"] }
symphonia = { version = "0.5", features = ['all'] }
walkdir = "2"
# backend-rodio
rodio = { version = "0.19", optional = true }
# backend-sympal
cpal = { version = "0.15", optional = true }
dasp = { version = "0.11", optional = true, features = ["interpolate", "interpolate-linear", "signal"] }
# media-controls
souvlaki = { version = "0.7", optional = true, default-features = false, features = ['use_zbus'] }
# tui
# ratatui re-exports crossterm
ratatui = { version = "0.28", optional = true, default-features = false, features = ['crossterm'] }
# clipboard
arboard = { version = "3", optional = true, default-features = false, features = ['wayland-data-control'] }
# album-art
image = { version = "0.25.2", default-features = false, features = ["jpeg", "png"], optional = true }
[features]
media-controls = ["dep:souvlaki"]
tui = ["dep:ratatui"]
clipboard = ["dep:arboard", "tui"]
backend-rodio = ["dep:rodio"]
backend-sympal = ["dep:cpal", "dep:dasp"]
jack = ["cpal/jack", "backend-sympal"]
album-art = ["dep:image", "tui"]
default = ["media-controls", "tui", "clipboard", "backend-sympal", "album-art"]
[target.'cfg(windows)'.dependencies]
raw-window-handle = "0.5"
winit = { version = "0.29", default-features = false, features = ["rwh_05"] }
[profile.dev]
opt-level = 1
[profile.release]
opt-level = 3
lto = "fat"
strip = true