2016-08-14 08:30:40 +00:00
|
|
|
[package]
|
2016-08-28 23:42:16 +00:00
|
|
|
name = "polaris"
|
2020-12-14 03:24:06 +00:00
|
|
|
version = "0.0.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
|
|
|
|
2016-09-17 10:05:31 +00:00
|
|
|
[features]
|
2020-12-15 05:18:44 +00:00
|
|
|
default = ["bundle-sqlite"]
|
2020-12-08 09:22:17 +00:00
|
|
|
bundle-sqlite = ["libsqlite3-sys"]
|
2020-12-15 05:18:44 +00:00
|
|
|
ui = ["uuid", "winapi"]
|
2016-09-17 10:05:31 +00:00
|
|
|
|
2016-08-19 06:29:27 +00:00
|
|
|
[dependencies]
|
2020-12-15 05:18:44 +00:00
|
|
|
actix-files = { version = "0.4" }
|
|
|
|
actix-web = { version = "3" }
|
|
|
|
actix-web-httpauth = { version = "0.5.0" }
|
2020-12-08 08:14:16 +00:00
|
|
|
anyhow = "1.0.35"
|
2020-05-30 23:56:20 +00:00
|
|
|
ape = "0.3.0"
|
2020-12-08 08:14:16 +00:00
|
|
|
base64 = "0.13"
|
2020-12-20 11:25:45 +00:00
|
|
|
branca = "0.10.0"
|
2020-12-15 05:18:44 +00:00
|
|
|
cookie = { version = "0.14", features = ["signed", "key-expansion"] }
|
2020-12-08 08:14:16 +00:00
|
|
|
crossbeam-channel = "0.5"
|
2019-08-06 09:25:47 +00:00
|
|
|
diesel_migrations = { version = "1.4", features = ["sqlite"] }
|
2020-12-15 05:18:44 +00:00
|
|
|
futures-util = { version = "0.3" }
|
2017-09-22 04:32:42 +00:00
|
|
|
getopts = "0.2.15"
|
2020-12-15 05:18:44 +00:00
|
|
|
http = "0.2.2"
|
2020-05-30 23:56:20 +00:00
|
|
|
id3 = "0.5.1"
|
2020-12-08 09:22:17 +00:00
|
|
|
libsqlite3-sys = { version = "0.18", features = ["bundled", "bundled-windows"], optional = true }
|
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"
|
2020-11-25 23:46:09 +00:00
|
|
|
mp4ameta = "0.7.1"
|
2020-12-08 04:07:10 +00:00
|
|
|
num_cpus = "1.13.0"
|
2020-08-07 10:45:43 +00:00
|
|
|
opus_headers = "0.1.2"
|
2020-12-15 05:18:44 +00:00
|
|
|
percent-encoding = "2.1"
|
2020-12-08 08:14:16 +00:00
|
|
|
pbkdf2 = "0.6"
|
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"
|
2020-12-15 05:18:44 +00:00
|
|
|
rustfm-scrobble = "1.1"
|
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"
|
2020-12-15 05:18:44 +00:00
|
|
|
time = "0.2"
|
2019-08-06 09:25:47 +00:00
|
|
|
toml = "0.5"
|
2020-12-13 23:53:31 +00:00
|
|
|
ureq = "1.5"
|
2020-01-17 09:17:23 +00:00
|
|
|
url = "2.1"
|
2016-09-17 10:05:31 +00:00
|
|
|
|
2020-12-08 07:24:57 +00:00
|
|
|
[dependencies.diesel]
|
|
|
|
version = "1.4.5"
|
|
|
|
default_features = false
|
|
|
|
features = ["libsqlite3-sys", "r2d2", "sqlite"]
|
|
|
|
|
2020-12-08 07:06:50 +00:00
|
|
|
[dependencies.image]
|
|
|
|
version = "0.23.12"
|
|
|
|
default_features = false
|
|
|
|
features = ["bmp", "gif", "jpeg", "png"]
|
|
|
|
|
2017-05-31 05:45:27 +00:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
2020-11-26 23:57:08 +00:00
|
|
|
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]
|
2020-11-30 09:26:55 +00:00
|
|
|
headers = "0.3"
|