polaris/Cargo.toml

65 lines
1.5 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-08-05 06:13:06 +00:00
version = "0.12.4"
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]
2020-01-17 07:37:36 +00:00
default = ["service-rocket"]
ui = ["uuid", "winapi"]
2020-01-14 07:12:33 +00:00
service-rocket = ["rocket", "rocket_contrib"]
2016-08-19 06:29:27 +00:00
[dependencies]
2020-05-30 23:59:59 +00:00
anyhow = "1.0.31"
2020-05-30 23:56:20 +00:00
ape = "0.3.0"
2020-05-30 23:59:59 +00:00
base64 = "0.12.1"
2020-07-20 13:30:38 +00:00
crossbeam-channel = "0.4"
2020-05-31 00:25:51 +00:00
diesel = { version = "1.4.4", features = ["sqlite", "r2d2"] }
2019-08-06 09:25:47 +00:00
diesel_migrations = { version = "1.4", features = ["sqlite"] }
2017-09-22 04:32:42 +00:00
getopts = "0.2.15"
2020-05-30 23:56:20 +00:00
id3 = "0.5.1"
2020-05-31 00:05:41 +00:00
image = "0.23.4"
2019-10-19 07:41:22 +00:00
libsqlite3-sys = { version = "0.16", features = ["bundled-windows"] }
2020-01-23 05:45:11 +00:00
rustfm-scrobble = "^1"
2020-05-30 23:56:20 +00:00
lewton = "0.10.1"
2018-10-07 01:13:44 +00:00
log = "0.4.5"
2020-05-30 23:56:20 +00:00
metaflac = "0.2.3"
mp3-duration = "0.1.9"
mp4ameta = "0.7.1"
num_cpus = "1.13.0"
2020-08-07 10:45:43 +00:00
opus_headers = "0.1.2"
2020-07-24 07:13:40 +00:00
pbkdf2 = "0.4"
2019-08-06 09:25:47 +00:00
rand = "0.7"
2020-01-19 01:39:13 +00:00
rayon = "1.3"
2020-05-30 23:56:20 +00:00
regex = "1.3.9"
2018-10-07 00:30:01 +00:00
reqwest = "0.9.2"
2020-05-30 23:32:34 +00:00
rocket = { version = "0.4.5", optional = true }
2020-05-30 23:59:59 +00:00
serde = { version = "1.0.111", features = ["derive"] }
serde_derive = "1.0.111"
serde_json = "1.0.53"
2020-05-31 00:11:32 +00:00
simplelog = "0.8.0"
2020-05-30 23:59:59 +00:00
thiserror = "1.0.19"
time = "0.1"
2019-08-06 09:25:47 +00:00
toml = "0.5"
2020-01-17 09:17:23 +00:00
url = "2.1"
2018-10-27 21:33:28 +00:00
[dependencies.rocket_contrib]
2020-05-30 23:32:34 +00:00
version = "0.4.5"
2018-10-27 21:33:28 +00:00
default_features = false
2018-10-27 22:19:31 +00:00
features = ["json", "serve"]
2020-01-14 07:12:33 +00:00
optional = true
2018-10-27 21:33:28 +00:00
2017-05-31 05:45:27 +00:00
[target.'cfg(windows)'.dependencies]
uuid = { version="0.8", optional = true }
winapi = { version = "0.3.3", features = ["winuser", "libloaderapi", "shellapi", "errhandlingapi"], optional = true }
2018-01-06 22:31:48 +00:00
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"
2020-01-17 10:37:33 +00:00
[dev-dependencies]
percent-encoding = "2.1"
2020-05-30 23:49:39 +00:00
cookie = "0.14.0"
2020-05-31 00:07:25 +00:00
http = "0.2.1"
headers = "0.3"