-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (30 loc) · 866 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
33
34
[package]
name = "jolteon"
version = "0.1.0"
edition = "2021"
[profile.dev]
panic = 'abort'
[profile.release]
panic = 'abort'
strip = "debuginfo"
lto = true
codegen-units = 1
[dependencies]
crossterm = { version = "0.28.1", features = ["event-stream", "serde"] }
glob = "0.3.1"
rodio = { version = "0.19.0", features = ["symphonia-all"]}
lofty = "0.21.1"
toml = "0.8.19"
serde = {version = "1.0.214", features = ["derive"]}
home = "0.5.9"
ratatui = { version = "0.29.0", features = ["serde", "unstable-widget-ref"] }
mpris-server = "0.8.1"
async-std = {version = "1.13.0", features = ["attributes", "unstable"]}
futures = "0.3.31"
flexi_logger = { version = "0.29.6" }
log = "0.4.22"
chrono = "0.4.38"
colored = "2.1.0"
reqwest = { version = "0.12.9", features = ["json", "blocking"] }
[patch.crates-io]
cpal = { git = 'https://github.com/lautarodragan/cpal' }