forked from http-rs/tide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
67 lines (61 loc) · 1.72 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
[package]
authors = [
"Aaron Turon <[email protected]>",
"Yoshua Wuyts <[email protected]>",
]
description = "WIP modular web framework"
documentation = "https://docs.rs/tide"
keywords = ["tide", "http", "web", "framework", "async"]
categories = [
"network-programming",
"asynchronous",
"web-programming::http-server"
]
edition = "2018"
license = "MIT OR Apache-2.0"
name = "tide"
readme = "README.md"
repository = "https://github.com/rustasync/tide"
version = "0.2.0"
[features]
default = ["hyper", "cookies"]
cookies = ["tide-cookies"]
hyper = ["tide-core/http-service-hyper"]
[dependencies]
futures-preview = "0.3.0-alpha.16"
http = "0.1"
http-service = "0.2.0"
serde = "1.0.91"
serde_derive = "1.0.91"
serde_urlencoded = "0.5.5"
slog = "2.4.1"
slog-async = "2.3.0"
slog-term = "2.4.0"
tide-cookies = { path = "./tide-cookies", optional = true }
tide-core = { path = "./tide-core" }
[dependencies.multipart]
default-features = false
features = ["server"]
version = "0.16.1"
[dev-dependencies]
bytes = "0.4.12"
cookie = { version = "0.12", features = ["percent-encode"] }
futures-fs = "0.0.5"
futures-util-preview = { version = "0.3.0-alpha.16", features = ["compat"] }
http-service-mock = "0.2.0"
juniper = "0.12.0"
mime = "0.3.13"
mime_guess = "2.0.0-alpha.6"
percent-encoding = "1.0.1"
serde = { version = "1.0.91", features = ["derive"] }
[workspace]
members = [
"tide-compression",
"tide-cookies",
"tide-core",
"tide-log",
]
[patch.crates-io]
http-service = { git = "https://github.com/rustasync/http-service", branch = "master" }
http-service-hyper = { git = "https://github.com/rustasync/http-service", branch = "master" }
http-service-mock = { git = "https://github.com/rustasync/http-service", branch = "master" }