[package]
edition = "2024"
rust-version = "1.95.0"
name = "kopuz-reader"
version = "0.7.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A modern, lightweight music player built with Rust and Dioxus."
homepage = "https://github.com/Kopuz-org/kopuz"
readme = false
keywords = [
"music",
"player",
"audio",
"dioxus",
]
license = "MIT"
repository = "https://github.com/Kopuz-org/kopuz"
[lib]
name = "reader"
path = "src/lib.rs"
[dependencies.config]
version = "0.7.0"
package = "kopuz-config"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tracing]
version = "0.1"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.lofty]
version = "0.24.0"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.reqwest]
version = "0.13"
features = [
"rustls",
"http2",
"charset",
"query",
"form",
"json",
]
default-features = false
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.symphonia]
version = "0.6"
features = ["all"]
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tokio]
version = "1.0"
features = [
"rt",
"time",
"sync",
"macros",
"io-util",
"fs",
]
[lints.clippy]
print_stderr = "deny"
print_stdout = "deny"