-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Cargo.toml
34 lines (31 loc) · 1012 Bytes
/
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
[package]
name = "hyper-staticfile"
version = "0.10.1"
authors = ["hyper-staticfile contributors"]
description = "Static file serving for Hyper 1.0"
repository = "https://github.com/stephank/hyper-staticfile"
license = "MIT"
readme = "README.md"
documentation = "https://docs.rs/hyper-staticfile"
keywords = ["hyper", "web", "http", "file", "static"]
categories = ["web-programming::http-server"]
edition = "2018"
[dependencies]
futures-util = "0.3.1"
http = "1.0.0"
httpdate = "1.0.1"
http-range = "0.1.4"
hyper = "1.0.0"
mime_guess = "2.0.1"
percent-encoding = "2.1.0"
rand = "0.8.4"
tokio = { version = "1.0.0", features = ["fs"] }
url = "2.1.0"
[dev-dependencies]
hyper = { version = "1.0.0", features = ["http1", "server"] }
hyper-util = { version = "0.1.1", features = ["tokio"] }
http-body-util = "0.1.0"
tempfile = "3"
tokio = { version = "1.0.0", features = ["macros", "rt-multi-thread", "net", "io-util"] }
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.6", features = ["winbase"] }