polaris/Cargo.toml

73 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"
2018-10-24 21:45:14 +00:00
version = "0.8.0"
2016-08-14 08:30:40 +00:00
authors = ["Antoine Gersant <antoine.gersant@lesforges.org>"]
[features]
ui = []
2016-08-19 06:29:27 +00:00
[dependencies]
2017-12-11 13:00:00 +00:00
ape = "0.2.0"
2017-07-07 05:55:51 +00:00
app_dirs = "1.1.1"
base64 = "0.9.3"
2018-10-07 01:13:44 +00:00
diesel = { version = "1.3.3", features = ["sqlite"] }
diesel_migrations = { version = "1.3.0", features = ["sqlite"] }
2018-10-07 00:03:06 +00:00
error-chain = "0.12.0"
2017-09-22 04:32:42 +00:00
getopts = "0.2.15"
2018-10-07 01:13:44 +00:00
hyper = "0.12.11"
id3 = "0.2.3"
2018-10-07 00:03:06 +00:00
image = "0.20.0"
2018-10-07 04:30:29 +00:00
iron = "0.6.0"
rustfm-scrobble = "0.9.1"
2018-10-07 00:03:06 +00:00
lewton = "0.9.1"
2018-10-07 01:13:44 +00:00
log = "0.4.5"
2018-10-27 17:56:04 +00:00
md5 = "0.5.0"
metaflac = "0.1.8"
2018-10-07 04:30:29 +00:00
mount = "0.4.0"
mp3-duration = "0.1.0"
2018-10-07 04:30:29 +00:00
params = { git = "https://github.com/agersant/params" }
2018-10-07 00:03:06 +00:00
rand = "0.5.5"
regex = "1.0.5"
2018-10-07 00:24:06 +00:00
ring = "0.13.2"
2018-10-07 00:30:01 +00:00
reqwest = "0.9.2"
2018-10-27 21:33:28 +00:00
rocket = "0.4.0-dev"
2018-10-07 04:30:29 +00:00
router = "0.6.0"
2018-10-07 00:24:06 +00:00
rust-crypto = "0.2.36"
secure-session = "0.3.1"
2017-07-07 03:49:34 +00:00
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
serde-xml-rs = "0.2.1"
2018-10-07 04:30:29 +00:00
staticfile = "0.5.0"
2018-10-07 00:03:06 +00:00
simplelog = "0.5.2"
2017-09-22 04:34:06 +00:00
toml = "0.4.5"
typemap = "0.3"
url = "1.2.0"
2018-10-27 21:33:28 +00:00
[patch.crates-io.rocket]
git = "https://github.com/SergioBenitez/Rocket.git"
rev = "556206e"
[patch.crates-io.rocket_contrib]
git = "https://github.com/SergioBenitez/Rocket.git"
rev = "556206e"
[dependencies.rocket_contrib]
version = "0.4.0-dev"
default_features = false
2018-10-27 22:19:31 +00:00
features = ["json", "serve"]
2018-10-27 21:33:28 +00:00
2017-06-26 01:36:54 +00:00
[dependencies.rusqlite]
2018-10-07 04:32:55 +00:00
version = "0.14.0"
2017-06-26 01:36:54 +00:00
features = ["bundled"]
2017-05-31 05:45:27 +00:00
[target.'cfg(windows)'.dependencies]
2018-10-07 00:03:06 +00:00
uuid = "0.7.1"
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]
unix-daemonize = "0.1.2"