forked from tomaka/rouille
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (37 loc) · 1.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
[package]
name = "rouille"
version = "3.5.0"
authors = ["Pierre Krieger <[email protected]>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/tomaka/rouille"
documentation = "http://docs.rs/rouille"
description = "High-level idiomatic web framework."
readme = "README.md"
keywords = ["web", "framework", "http", "rest"]
categories = ["web-programming::http-server", "web-programming::websocket"]
[features]
default = ["gzip", "brotli"]
gzip = ["deflate"]
ssl = ["tiny_http/ssl"]
ssl-rustls = ["tiny_http/ssl-rustls"]
[dependencies]
base64 = "0.13"
brotli = { version = "3.3.2", optional = true }
chrono = { version = "0.4.19", default-features = false, features = ["clock"]}
filetime = "0.2.0"
deflate = { version = "0.9", optional = true, features = ["gzip"] }
multipart = { version = "0.18", default-features = false, features = ["server"] }
percent-encoding = "2"
rand = "0.8"
serde = "1"
serde_derive = "1"
serde_json = "1"
sha1 = "0.6.0"
time = { version = "0.3.5", features = [ "local-offset" ] }
tiny_http = { version = "0.11.0" }
url = "2"
threadpool = "1"
num_cpus = "1"
[dev-dependencies]
postgres = { version = "0.19", default-features = false }
log = "0.4"