-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
41 lines (39 loc) · 1.18 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
[package]
name = "users"
version = "0.1.0"
[lib]
name = "users_lib"
path = "src/lib.rs"
[dependencies]
base64 = "0.9"
chrono = { version = "0.4", features = ["serde", "rustc-serialize"] }
config = { version = "0.9", default-features = false, features = ["toml"] }
diesel = { version = "1.3.3", features = ["postgres", "chrono", "extras"] }
failure = "0.1.1"
futures = "0.1.17"
futures-cpupool = "0.1.7"
hyper = "0.11"
hyper-tls = { git = "https://github.com/storiqateam/hyper-tls", tag = "v0.1.4-fresh-tls" }
jsonwebtoken = "4.0.0"
lazy_static = "1.0"
log = "0.4"
r2d2 = "0.8.1"
r2d2_redis = "0.8"
rand = "0.4"
regex = "0.2"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
sha3 = "0.7.2"
stq_cache = { path = "vendor/libstqbackend/cache" }
stq_http = { path = "vendor/libstqbackend/http" }
stq_logging = { path = "vendor/libstqbackend/logging" }
stq_router = { path = "vendor/libstqbackend/router" }
stq_static_resources = { path = "vendor/libstqbackend/static_resources" }
stq_types = { path = "vendor/libstqbackend/types" }
tokio-core = "0.1"
tokio-signal = "0.2.6"
uuid = { version = "0.6", features = ["use_std", "v4", "serde"] }
validator = "0.7.1"
validator_derive = "0.7.2"
sentry = "0.12"