forked from spaceapi-community/spaceapi-server-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (42 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 = "spaceapi-server"
version = "0.4.1"
documentation = "https://docs.rs/spaceapi-server"
repository = "https://github.com/spaceapi-community/spaceapi-server-rs"
license = "MIT OR Apache-2.0"
authors = [
"Raphael Nestler <[email protected]>",
"Danilo Bargen <[email protected]>",
"Stefan Schindler <[email protected]>",
]
description = "A library that allows you to easily implement a Space API server."
readme = "README.md"
keywords = ["spaceapi", "hackerspaces", "status", "api", "server"]
include = [
"**/*.rs",
"Cargo.toml",
"README.md",
"CHANGELOG.md",
"AUTHORS.md",
"LICENSE-MIT",
"LICENSE-APACHE",
]
[badges]
travis-ci = { repository = "spaceapi-community/spaceapi-server-rs" }
[dependencies]
r2d2 = "^0.7"
r2d2_redis = "^0.6"
redis = "^0.8"
rustc-serialize = "^0.3"
log = "^0.3"
iron = "^0.5"
urlencoded = "^0.5"
router = "^0.5"
error-type = "^0.1"
serde_json = "^1.0"
spaceapi = "^0.5.0"
clippy = {version = "^0.0", optional = true}
[features]
unstable = ["clippy"]
[dev-dependencies]
env_logger = "^0.4"