-
Notifications
You must be signed in to change notification settings - Fork 321
/
Cargo.toml
51 lines (46 loc) · 1.02 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
[package]
authors = [
"Aaron Turon <aturon@mozilla.com>",
"Yoshua Wuyts <yoshuawuyts@gmail.com>",
]
description = "WIP modular web framework"
documentation = "https://docs.rs/tide"
edition = "2018"
license = "MIT OR Apache-2.0"
name = "tide"
readme = "README.md"
repository = "https://github.com/rustasync/tide"
version = "0.0.5"
[dependencies]
cookie = "0.11"
futures-preview = "0.3.0-alpha.13"
fnv = "1.0.6"
http = "0.1"
http-service = "0.1.4"
pin-utils = "0.1.0-alpha.4"
route-recognizer = "0.1.12"
serde = "1.0.80"
serde_derive = "1.0.80"
serde_json = "1.0.32"
serde_qs = "0.4.1"
slog = "2.4.1"
slog-async = "2.3.0"
slog-term = "2.4.0"
typemap = "0.3.3"
[dependencies.http-service-hyper]
optional = true
version = "0.1.0"
[dependencies.multipart]
default-features = false
features = ["server"]
version = "0.15.3"
[features]
default = ["hyper"]
hyper = ["http-service-hyper"]
[dev-dependencies]
basic-cookies = "0.1.3"
juniper = "0.10.0"
structopt = "0.2.14"
http-service-mock = "0.1.0"
serde = "1.0.80"
serde_derive = "1.0.80"