54 lines
1.1 KiB
TOML
54 lines
1.1 KiB
TOML
[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]
|
|
|
|
# Used for color palette generation
|
|
exoquant = "0.2.0"
|
|
|
|
# Used for parsing album artwork
|
|
image = "0.23.14"
|
|
|
|
# Display windows & graphics
|
|
#iced_native = "0.4.0"
|
|
|
|
# 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"
|
|
|
|
[dependencies.symphonia]
|
|
# Music decoding and metadata parsing
|
|
features = ["isomp4", "aac", "mp3"]
|
|
version = "0.4.0"
|
|
|
|
[dependencies.iced]
|
|
# Display windows & graphics
|
|
features = ["canvas", "image"]
|
|
path = "./iced/"
|
|
|
|
[dependencies.iced_native]
|
|
# Native-display only GUI features
|
|
path = "./iced/native"
|
|
|
|
[dependencies.iced_lazy]
|
|
# Responsive widget design
|
|
path = "./iced/lazy"
|
|
|
|
[dependencies.iced_futures]
|
|
# Display windows & graphics
|
|
features = ["smol"]
|
|
path = "./iced/futures"
|
|
|
|
[dependencies.rodio]
|
|
# Playing audio
|
|
default-features = false
|
|
features = ["symphonia-all"]
|
|
version = "0.15"
|