playlistd/Cargo.toml

38 lines
1.0 KiB
TOML
Raw Normal View History

2023-08-13 20:48:41 +00:00
[package]
2024-04-16 19:54:15 +00:00
name = "playlistd"
2024-08-16 20:27:49 +00:00
version = "0.2.4"
2023-08-13 20:48:41 +00:00
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]
rocket = { version = "0.5.0", features = ["json"] }
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"
log = "0.4.21"
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-20 18:10:49 +00:00
["etc/playlistd/playlistd.toml", "etc/playlistd/playlistd.toml", "600"],
["etc/playlistd/Rocket.toml", "etc/playlistd/Rocket.toml", "600"],
2024-04-16 19:37:42 +00:00
]
conf-files = [
2024-04-20 18:10:49 +00:00
"/etc/playlistd/playlistd.toml",
"/etc/playlistd/Rocket.toml",
2024-04-16 19:37:42 +00:00
]
2024-04-16 18:15:56 +00:00
[package.metadata.deb.systemd-units]
unit-scripts = "systemd"
start = false