-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
77 lines (61 loc) · 1.5 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[package]
name = "direkuta"
version = "0.1.7-beta"
authors = ["Ian Cronkright <txurtian@yahoo.com>"]
license = "MIT/Apache-2.0"
readme = "README.md"
description = "A fast REST focused web framework"
homepage = "https://gitlab.com/akibisuto/direkuta"
documentation = "https://docs.rs/direkuta"
repository = "https://gitlab.com/akibisuto/direkuta"
keywords = ["http", "hyper", "json", "tera", "rest"]
categories = ["network-programming", "web-programming::http-server"]
include = [
"Cargo.toml",
"LICENSE-APACHE",
"LICENSE-MIT",
"src/**/*"
]
edition = "2018"
[badges]
gitlab = { repository = "akibisuto/direkuta", branch = "master" }
maintenance = { status = "experimental" }
[dependencies]
futures = "0.1"
http = "0.1"
hyper = "0.12"
indexmap = "1.0"
regex = "1.0"
tokio-fs = "0.1"
# Optional
serde = { version = "1.0", optional = true }
serde_derive = { version = "1.0", optional = true }
serde_json = { version = "1.0", optional = true }
tera = { version = "0.11", optional = true }
[dev-dependencies]
tokio = "0.1"
yukikaze = "0.3"
[[example]]
name = "captures"
path = "examples/captures.rs"
[[example]]
name = "headers"
path = "examples/headers.rs"
[[example]]
name = "hello"
path = "examples/hello.rs"
[[example]]
name = "json"
path = "examples/json.rs"
required-features = ["json"]
[features]
default = []
html = ["tera"]
json = ["serde", "serde_derive", "serde_json"]
runtime = []
[package.metadata.docs.rs]
features = ["html", "json"]
[profile.dev]
incremental = false
[profile.test]
incremental = false