-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
58 lines (51 loc) · 1.11 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[package]
name = "service-daemon"
version = "0.2.1"
authors = ["Aron Heinecke <[email protected]>"]
edition = "2018"
description = "Service controller for remote controlling services"
license = "MPL-2.0"
[profile.release]
lto = true
[features]
default = ["local"]
local = ["sled","bincode"]
remote = ["mysql"]
[dependencies]
actix = "0.9"
actix-web = "2"
actix-rt = "1"
actix-files = "0.2"
actix-identity = "0.2"
actix-threadpool = "0.3"
nanoid = "0.3"
config = "0.10"
data-encoding = "2"
oath = "0.10"
bcrypt = "0.8"
mysql = {version = "16", optional = true }
sled = {version = "0.31", optional = true }
bincode = {version = "1", optional = true }
strip-ansi-escapes = "0.1"
failure = "0.1"
serde = {features = ["derive"], version = "1" }
log = "0.4"
env_logger = "0.7"
metrohash = "1"
arraydeque = "0.4"
futures = "0.3"
futures-util = "0.3"
lazy_static = "1"
rand = "0.7"
bitflags = "1"
chrono = "0.4"
[dependencies.tokio]
version = "0.2"
features = ["sync","process","io-util","macros"]
[target.'cfg(unix)'.dependencies]
sysexit = "0.2"
[dev-dependencies]
toml = "0.5"
serde_json = "1"
circular-queue = "0.2"
tempfile = "3"