This repository has been archived by the owner on Jan 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
91 lines (81 loc) · 2.17 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[package]
name = "finchers"
version = "0.14.0-dev"
edition = "2018"
description = "A combinator library for builidng asynchronous HTTP services"
authors = ["Yusuke Sasaki <[email protected]>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
homepage = "https://finchers-rs.github.io"
repository = "https://github.com/finchers-rs/finchers.git"
keywords = ["finchers", "web", "framework", "server"]
categories = ["web-programming::http-server"]
include = [
"/Cargo.toml",
"/build.rs",
"/src/**/*",
"/tests/**/*",
"/examples/**/*",
"/benches/**/*",
"/LICENSE-MIT",
"/LICENSE-APACHE",
"/README.md"
]
[badges]
maintenance = { status = "actively-developed" }
[features]
default = []
secure = ["cookie/secure"]
[dependencies]
finchers-macros = { version = "0.14.0-dev", path = "finchers-macros" }
bitflags = "1.0.4"
bytes = { version = "0.4.9", features = ["either"] }
cookie = { version = "0.11.0", features = ["percent-encode"] }
either = "1.5.0"
failure = "0.1.2"
futures = "0.1.23"
http = "0.1.10"
izanami-service = "0.1.0-preview.1"
izanami-util = "0.1.0-preview.1"
log = "0.4.3"
mime = "0.3.8"
mime_guess = "2.0.0-alpha.6"
percent-encoding = "1.0.1"
serde = { version = "1.0.71", features = ["derive"] }
serde_json = "1.0.24"
serde_qs = "0.4.1"
tokio = "0.1.8"
url = "1.7.1"
[dev-dependencies]
matches = "0.1.8"
izanami = "0.1.0-preview.1"
version-sync = "0.7"
[dev-dependencies.cargo-husky]
version = "1"
default-features = false
features = ["user-hooks"]
[workspace]
members = [
"finchers-macros",
#"finchers-juniper",
#"finchers-session",
#"finchers-template",
"finchers-tungstenite",
"doctest",
#"examples/custom-logging",
#"examples/diesel",
#"examples/juniper",
#"examples/jwt-auth",
#"examples/middlewares",
#"examples/session-redis",
#"examples/staticfiles",
#"examples/template-askama",
#"examples/template-handlebars",
#"examples/template-horrorshow",
#"examples/template-tera",
#"examples/websocket",
]
[patch.crates-io]
#izanami = { git = "https://github.com/ubnt-intrepid/izanami.git" }
#izanami-util = { git = "https://github.com/ubnt-intrepid/izanami.git" }
#izanami-service = { git = "https://github.com/ubnt-intrepid/izanami.git" }