polaris/Cargo.toml

55 lines
1.1 KiB
TOML
Raw Normal View History

2016-08-14 01:30:40 -07:00
[package]
2016-08-28 16:42:16 -07:00
name = "polaris"
2019-04-07 18:53:43 -07:00
version = "0.10.0"
2016-08-14 01:30:40 -07:00
authors = ["Antoine Gersant <antoine.gersant@lesforges.org>"]
2018-10-30 23:49:30 -07:00
edition = "2018"
2016-08-14 01:30:40 -07:00
[features]
ui = []
2016-08-18 23:29:27 -07:00
[dependencies]
2017-12-11 14:00:00 +01:00
ape = "0.2.0"
2017-07-06 22:55:51 -07:00
app_dirs = "1.1.1"
2018-10-28 17:27:47 -07:00
base64 = "0.10.0"
2018-10-06 18:13:44 -07:00
diesel = { version = "1.3.3", features = ["sqlite"] }
diesel_migrations = { version = "1.3.0", features = ["sqlite"] }
2018-10-06 17:03:06 -07:00
error-chain = "0.12.0"
2017-09-21 21:32:42 -07:00
getopts = "0.2.15"
id3 = "0.2.3"
2018-10-06 17:03:06 -07:00
image = "0.20.0"
rustfm-scrobble = { git = "https://github.com/agersant/rustfm-scrobble" }
2018-10-06 17:03:06 -07:00
lewton = "0.9.1"
2018-10-06 18:13:44 -07:00
log = "0.4.5"
metaflac = "0.1.8"
mp3-duration = "0.1.0"
2018-10-06 17:03:06 -07:00
rand = "0.5.5"
regex = "1.0.5"
2019-02-19 18:02:09 -08:00
ring = "0.13.5"
2018-10-06 17:30:01 -07:00
reqwest = "0.9.2"
2019-02-19 18:02:09 -08:00
rocket = "0.4.0"
2018-10-06 17:24:06 -07:00
rust-crypto = "0.2.36"
2017-07-06 20:49:34 -07:00
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
2018-10-06 17:03:06 -07:00
simplelog = "0.5.2"
2017-09-21 21:34:06 -07:00
toml = "0.4.5"
2018-10-27 14:33:28 -07:00
[dependencies.rocket_contrib]
2019-02-19 18:02:09 -08:00
version = "0.4.0"
2018-10-27 14:33:28 -07:00
default_features = false
2018-10-27 15:19:31 -07:00
features = ["json", "serve"]
2018-10-27 14:33:28 -07:00
2017-06-25 18:36:54 -07:00
[dependencies.rusqlite]
2018-10-06 21:32:55 -07:00
version = "0.14.0"
2017-06-25 18:36:54 -07:00
features = ["bundled"]
2017-05-30 22:45:27 -07:00
[target.'cfg(windows)'.dependencies]
2018-10-06 17:03:06 -07:00
uuid = "0.7.1"
2017-05-30 22:45:27 -07:00
2018-01-06 14:31:48 -08:00
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3.3"
features = ["winuser", "libloaderapi", "shellapi", "errhandlingapi"]
2017-05-30 22:45:27 -07:00
[target.'cfg(unix)'.dependencies]
unix-daemonize = "0.1.2"