Files
LibreTunes-DX/Cargo.toml
Ethan Girouard 836fe1adcd
All checks were successful
Push Workflows / rustfmt (push) Successful in 5s
Push Workflows / tailwind-build (push) Successful in 5s
Push Workflows / clippy (push) Successful in 22s
Push Workflows / docs (push) Successful in 26s
Push Workflows / test (push) Successful in 28s
Push Workflows / build (push) Successful in 52s
Push Workflows / nix-build (push) Successful in 4m54s
Add serde
2026-06-18 22:06:59 -04:00

31 lines
763 B
TOML

[package]
name = "libretunes"
version = "0.1.0"
authors = ["Ethan Girouard"]
edition = "2024"
build = "src/build.rs"
[dependencies]
diesel = { version = "2.3.10", optional = true, features = [ "postgres" ] }
diesel_migrations = { version = "2.3.2", optional = true, features = [ "postgres" ] }
dioxus = { version = "0.7.9", features = ["router", "fullstack"] }
dotenvy = { version = "0.15.7", optional = true }
lucide-dioxus = "3.11.0"
serde = { version = "1.0.228", features = ["derive"] }
thiserror = "2.0.18"
tracing = "0.1.44"
[features]
default = ["web"]
web = ["dioxus/web"]
server = [
"dioxus/server",
"dep:diesel",
"dep:diesel_migrations",
"dep:dotenvy",
]
# Disabled until supported
# desktop = ["dioxus/desktop"]
# mobile = ["dioxus/mobile"]