forked from rustless/rustless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
58 lines (48 loc) · 1.04 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 = "rustless"
version = "0.10.0"
authors = ["Stanislav Panferov <[email protected]>"]
description = "Rustless is a REST-like API micro-framework for Rust."
repository = "https://github.com/rustless/rustless"
documentation = "https://docs.rs/rustless/*/rustless/"
keywords = ["api", "web", "hyper", "iron", "rest"]
readme = "README.md"
license = "MIT"
[lib]
name = "rustless"
path = "src/lib.rs"
[[test]]
name = "tests"
[features]
default = ["iron_backend"]
iron_backend = ["iron", "bodyparser", "plugin"]
ssl = ["hyper/ssl", "iron/ssl"]
[dependencies]
regex = "0.1"
lazy_static = "0.2"
valico = "1"
queryst = "1"
jsonway = "1"
url = "1"
error = "0.1"
typemap = "0.3"
log = "0.3"
typeable = "0.1"
traitobject = "0.0"
serde = "0.8"
serde_json = "0.8"
[dependencies.cookie]
version = "0.3"
default-features = false
[dependencies.iron]
optional = true
version = "0.4"
[dependencies.bodyparser]
optional = true
version = "0.4"
[dependencies.plugin]
optional = true
version = "0.2"
[dependencies.hyper]
version = "0.9"
default-features = false