2023-08-13 20:48:41 +00:00
|
|
|
[package]
|
2024-04-16 19:54:15 +00:00
|
|
|
name = "playlistd"
|
2023-08-13 20:48:41 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
authors = ["Jude Southworth (judesouthworth@pm.me)"]
|
|
|
|
license = "AGPL-3.0 only"
|
2024-04-16 19:54:15 +00:00
|
|
|
description = "Subsonic playlist daemon"
|
2023-08-13 20:48:41 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-04-18 19:15:07 +00:00
|
|
|
rocket = { version = "0.5.0", features = ["json"] }
|
2023-08-16 14:50:31 +00:00
|
|
|
tokio = { version = "1.0", features = ["full"] }
|
2024-03-17 16:53:07 +00:00
|
|
|
sqlx = { version = "0.7", features = ["runtime-tokio", "postgres", "uuid"] }
|
|
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
uuid = { version = "1.7", features = ["v4", "serde"] }
|
|
|
|
md5 = "0.7.0"
|
|
|
|
getrandom = "0.2.12"
|
|
|
|
thiserror = "1.0.58"
|
2024-04-16 19:37:42 +00:00
|
|
|
config = "0.14.0"
|
2024-04-18 19:15:07 +00:00
|
|
|
log = "0.4.21"
|
2024-04-18 21:33:45 +00:00
|
|
|
chrono = "0.4.38"
|
2023-08-14 10:27:37 +00:00
|
|
|
|
2023-08-13 20:48:41 +00:00
|
|
|
[package.metadata.deb]
|
|
|
|
depends = "$auto"
|
2024-04-16 19:37:42 +00:00
|
|
|
assets = [
|
2024-04-16 19:54:15 +00:00
|
|
|
["target/release/playlistd", "usr/bin/playlistd", "755"],
|
2024-04-16 19:37:42 +00:00
|
|
|
["etc/playlistd.toml", "etc/playlistd.toml", "600"],
|
|
|
|
]
|
|
|
|
conf-files = [
|
|
|
|
"/etc/playlistd.toml",
|
|
|
|
]
|
2024-04-16 18:15:56 +00:00
|
|
|
|
|
|
|
[package.metadata.deb.systemd-units]
|
|
|
|
unit-scripts = "systemd"
|
|
|
|
start = false
|