-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
46 lines (41 loc) · 1.05 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
[package]
name = "komadori"
version = "0.1.0"
authors = ["Wobscale Authors"]
[[bin]]
name = "backend"
path = "src/main.rs"
[[bin]]
name = "api"
path = "src/api_main.rs"
[dependencies]
log = "0.4"
fern = "0.5"
chrono = "0.4"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
uuid = "0.5"
# old version until https://github.com/rust-lang/rust/issues/50825 is fixed
diesel = { version = "=1.1.2", features = ["postgres", "uuid"] }
diesel_migrations = { version = "=1.1.2", features = ["postgres"] }
r2d2 = "0.8"
r2d2-diesel = "1.0.0"
oauth2 = "1.1"
rand = "0.3"
# force 0.6.0 since 0.6.1 is a breaking change due to the ring dep bump.
# bump this once rocket bumps ring
github-rs = "=0.6.0"
reqwest = "0.8"
hydra_oauthed_client = { path = "./hydra_oauthed_client" }
hydra_client = { path = "./hydra_client" }
url = "1.6"
lazy_static = "1.0"
constant_time_eq = "0.1"
hyper = "0.11"
tokio-core = "*"
futures = "0.1.14"
rocket = "0.3"
rocket_codegen = "0.3"
rocket_contrib = "0.3"
multi-reactor_drifting = { git = "https://github.com/wobscale/multi-reactor_drifting" }