forked from seanmonstar/warp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (41 loc) · 1 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
[package]
name = "warp"
version = "0.1.4" # don't forget to update html_root_url
description = "serve the web at warp speeds"
authors = ["Sean McArthur <[email protected]>"]
license = "MIT"
readme = "README.md"
documentation = "https://docs.rs/warp"
repository = "https://github.com/seanmonstar/warp"
categories = ["web-programming::http-server"]
keywords = ["warp", "server", "http", "hyper"]
[dependencies]
base64 = "0.9.2"
bitflags = "1"
bytes = "0.4.8"
futures = "0.1"
http = "0.1"
hyper = "0.12.10"
log = "0.4"
mime = "0.3"
mime_guess = "2.0.0-alpha.6"
scoped-tls = "0.1.2"
serde = "1.0"
serde_json = "1.0"
serde_urlencoded = "0.5.3"
sha-1 = "0.7"
tokio = "0.1.11"
tokio-io = "0.1"
# tls is enabled by default, we don't want that yet
tungstenite = { default-features = false, version = "0.6" }
urlencoding = "1.0.0"
[dev-dependencies]
pretty_env_logger = "0.2"
serde_derive = "1.0"
handlebars = "1.0.0"
[profile.release]
codegen-units = 1
incremental = false
[profile.bench]
codegen-units = 1
incremental = false