mirror of
https://github.com/agersant/polaris
synced 2024-11-10 10:14:12 +00:00
55 lines
1.2 KiB
TOML
55 lines
1.2 KiB
TOML
[package]
|
|
name = "polaris"
|
|
version = "0.10.0"
|
|
authors = ["Antoine Gersant <antoine.gersant@lesforges.org>"]
|
|
edition = "2018"
|
|
|
|
[features]
|
|
ui = []
|
|
|
|
[dependencies]
|
|
ape = "0.2.0"
|
|
app_dirs = "1.1.1"
|
|
base64 = "0.10.0"
|
|
diesel = { version = "1.4", features = ["sqlite"] }
|
|
diesel_migrations = { version = "1.4", features = ["sqlite"] }
|
|
error-chain = "0.12.0"
|
|
getopts = "0.2.15"
|
|
id3 = "0.3"
|
|
image = "0.22"
|
|
rustfm-scrobble = { git = "https://github.com/agersant/rustfm-scrobble" }
|
|
lewton = "0.9.1"
|
|
log = "0.4.5"
|
|
metaflac = "0.1.8"
|
|
mp3-duration = "0.1.0"
|
|
rand = "0.7"
|
|
regex = "1.2"
|
|
ring = "0.13.5"
|
|
reqwest = "0.9.2"
|
|
rocket = "0.4.2"
|
|
rust-crypto = "0.2.36"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_derive = "1.0"
|
|
serde_json = "1.0"
|
|
simplelog = "0.6"
|
|
toml = "0.5"
|
|
|
|
[dependencies.rocket_contrib]
|
|
version = "0.4.0"
|
|
default_features = false
|
|
features = ["json", "serve"]
|
|
|
|
[dependencies.rusqlite]
|
|
version = "0.14.0"
|
|
features = ["bundled"]
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
uuid = "0.7.1"
|
|
|
|
[target.'cfg(windows)'.dependencies.winapi]
|
|
version = "0.3.3"
|
|
features = ["winuser", "libloaderapi", "shellapi", "errhandlingapi"]
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libsystemd = "0.1"
|
|
unix-daemonize = "0.1.2"
|