forked from tomaka/rouille
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (36 loc) · 1.18 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
[package]
name = "rouille"
version = "3.6.2"
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"]
rustls = ["tiny_http/ssl-rustls"]
[dependencies]
base64 = "0.22"
brotli = { version = "3.3.2", optional = true }
chrono = { version = "0.4.19", default-features = false, features = ["clock"] }
filetime = "0.2.0"
deflate = { version = "1.0.0", 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"
time = { version = "0.3.15", features = [ "local-offset" ] }
tiny_http = { version = "0.12.0", default-features = false }
url = "2"
threadpool = "1"
sha1_smol = "1.0.0"
[dev-dependencies]
postgres = { version = "0.19", default-features = false }
log = "0.4"