deLyrium/Cargo.toml

54 lines
1.1 KiB
TOML
Raw Permalink Normal View History

[package]
name = "delyrium"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-12-30 22:32:52 +00:00
# Used for color palette generation
exoquant = "0.2.0"
2021-12-30 22:32:52 +00:00
# Used for parsing album artwork
image = "0.23.14"
2021-12-30 22:32:52 +00:00
# Display windows & graphics
#iced_native = "0.4.0"
2022-01-01 04:41:12 +00:00
# Native file dialogs
rfd = "0.6.3"
# Run long-running blocking tasks in another thread
# Also used by iced, so we share a threadpool
blocking = "1.1.0"
2022-01-01 17:28:23 +00:00
[dependencies.symphonia]
2022-01-03 23:19:10 +00:00
# Music decoding and metadata parsing
2022-01-01 17:28:23 +00:00
features = ["isomp4", "aac", "mp3"]
version = "0.4.0"
2022-01-01 17:28:23 +00:00
2022-01-01 04:41:12 +00:00
[dependencies.iced]
# Display windows & graphics
2022-01-02 03:08:00 +00:00
features = ["canvas", "image"]
2022-01-26 21:24:10 +00:00
path = "./iced/"
[dependencies.iced_native]
# Native-display only GUI features
2022-01-26 21:24:10 +00:00
path = "./iced/native"
[dependencies.iced_lazy]
# Responsive widget design
2022-01-26 21:24:10 +00:00
path = "./iced/lazy"
2022-01-01 04:41:12 +00:00
[dependencies.iced_futures]
# Display windows & graphics
features = ["smol"]
2022-01-26 21:24:10 +00:00
path = "./iced/futures"
2022-01-03 23:19:10 +00:00
[dependencies.rodio]
# Playing audio
default-features = false
2022-01-08 14:14:11 +00:00
features = ["symphonia-all"]
version = "0.15"