polaris/Cargo.toml

57 lines
1.3 KiB
TOML
Raw Normal View History

2016-08-14 08:30:40 +00:00
[package]
2016-08-28 23:42:16 +00:00
name = "polaris"
2020-01-01 16:04:13 +00:00
version = "0.11.0"
2016-08-14 08:30:40 +00:00
authors = ["Antoine Gersant <antoine.gersant@lesforges.org>"]
2018-10-31 06:49:30 +00:00
edition = "2018"
2016-08-14 08:30:40 +00:00
[features]
ui = []
2019-09-02 21:28:25 +00:00
profile-index = ["flame", "flamer"]
2016-08-19 06:29:27 +00:00
[dependencies]
2020-01-05 00:42:28 +00:00
anyhow = "1.0"
2017-12-11 13:00:00 +00:00
ape = "0.2.0"
app_dirs = "1.1.1"
2019-11-28 21:54:17 +00:00
base64 = "0.11.0"
2019-08-06 09:25:47 +00:00
diesel = { version = "1.4", features = ["sqlite"] }
diesel_migrations = { version = "1.4", features = ["sqlite"] }
2019-09-02 21:28:25 +00:00
flame = { version = "0.2.2", optional = true }
2019-09-29 00:02:42 +00:00
flamer = { version = "0.4", optional = true }
2017-09-22 04:32:42 +00:00
getopts = "0.2.15"
2019-08-06 09:25:47 +00:00
id3 = "0.3"
image = "0.22"
2019-10-19 07:41:22 +00:00
libsqlite3-sys = { version = "0.16", features = ["bundled-windows"] }
2019-08-29 05:41:47 +00:00
rustfm-scrobble = "0.9.2"
2018-10-07 00:03:06 +00:00
lewton = "0.9.1"
2018-10-07 01:13:44 +00:00
log = "0.4.5"
2019-10-20 08:06:56 +00:00
metaflac = "0.2"
2019-12-17 22:40:27 +00:00
mp3-duration = "0.1"
pbkdf2 = "0.3"
2019-08-06 09:25:47 +00:00
rand = "0.7"
regex = "1.2"
2018-10-07 00:30:01 +00:00
reqwest = "0.9.2"
2019-08-06 09:25:47 +00:00
rocket = "0.4.2"
2018-10-07 00:24:06 +00:00
rust-crypto = "0.2.36"
2019-08-06 09:51:15 +00:00
serde = { version = "1.0", features = ["derive"] }
2017-07-07 03:49:34 +00:00
serde_derive = "1.0"
serde_json = "1.0"
2019-09-28 23:54:37 +00:00
simplelog = "0.7"
2020-01-05 00:42:28 +00:00
thiserror = "1.0"
2019-08-06 09:25:47 +00:00
toml = "0.5"
2018-10-27 21:33:28 +00:00
[dependencies.rocket_contrib]
2019-09-28 07:48:04 +00:00
version = "0.4.2"
2018-10-27 21:33:28 +00:00
default_features = false
2018-10-27 22:19:31 +00:00
features = ["json", "serve"]
2018-10-27 21:33:28 +00:00
2017-05-31 05:45:27 +00:00
[target.'cfg(windows)'.dependencies]
2019-10-19 07:41:22 +00:00
uuid = "0.8"
2017-05-31 05:45:27 +00:00
2018-01-06 22:31:48 +00:00
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3.3"
features = ["winuser", "libloaderapi", "shellapi", "errhandlingapi"]
2017-05-31 05:45:27 +00:00
[target.'cfg(unix)'.dependencies]
2019-10-01 16:22:25 +00:00
sd-notify = "0.1.0"
2017-05-31 05:45:27 +00:00
unix-daemonize = "0.1.2"