-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
55 lines (40 loc) · 1.13 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
[package]
name = "geekapk_r"
version = "0.1.0"
authors = ["duangsuse <fedora-opensuse@outlook.com>"]
license = "AGPL-3.0"
description = "GeekApk Server"
readme = "README.md"
documentation = "https://geekapk-r.github.io/ServerR"
homepage = "https://geekapk.org"
repository = "https://github.com/geekapk-r/ServerR"
keywords = ["geekapk", "android", "community", "server", "restful-api", "diesel-rs", "rocket-rs"]
publish = false
[[bin]]
name = "geekapkd"
path = "src/main.rs"
[dependencies]
lazy_static = "1"
# WebSocket API
tungstenite = "0.5.3"
# Rocket.rs Web Framework
rocket = "0.3"
rocket_codegen = "0.3"
# ORM
diesel = { version = "1.3", features = ["postgres"] }
dotenv = "0.9.0"
r2d2 = "0.8"
r2d2-diesel = "1.0"
yansi = "0.4"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
rocket_contrib = { version = "0.3", features = ["json"] }
futures = "0.1"
hyper = "0.11"
tokio-core = "0.1"
[badges]
travis-ci = { repository = "geekapk-r/ServerR" }
is-it-maintained-issue-resolution = { repository = "geekapk/GeekApkR" }
is-it-maintained-open-issues = { repository = "geekapk/GeekApkR" }
maintenance = { status = "actively-developed" }