forked from http-server-rs/http-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
69 lines (61 loc) · 1.8 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
[package]
name = "http-server"
version = "0.8.8"
authors = ["Esteban Borai <[email protected]>"]
edition = "2021"
description = "Simple and configurable command-line HTTP server"
repository = "https://github.com/EstebanBorai/http-server"
categories = ["web-programming", "web-programming::http-server"]
keywords = ["configurable", "http", "server", "serve", "static"]
license = "MIT OR Apache-2.0"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "http_server_lib"
path = "src/lib.rs"
[[bin]]
name = "http-server"
path = "src/bin/main.rs"
[[bench]]
name = "file_explorer"
harness = false
[features]
dhat-profiling = ["dhat"]
[dependencies]
async-stream = "0.3.5"
async-trait = "0.1.74"
chrono = { version = "0.4.31", features = ["serde"] }
dhat = { version = "0.2.4", optional = true }
futures = "0.3.29"
flate2 = "1.0.28"
http = "0.2.11"
http-auth-basic = "0.3.3"
handlebars = "4.3.7"
hyper = { version = "0.14.27", features = ["http1", "server", "stream", "tcp"] }
hyper-rustls = { version = "0.23.0", features = ["webpki-roots"] }
local-ip-address = "0.5.6"
mime_guess = "2.0.4"
percent-encoding = "2.2.0"
rustls = "0.20.6"
rustls-pemfile = "1.0.4"
serde = { version = "1.0.192", features = ["derive"] }
serde_json = "1.0.108"
structopt = { version = "0.3.26", default-features = false }
termcolor = "1.1.3"
tokio = { version = "1.29.1", features = [
"fs",
"rt-multi-thread",
"signal",
"macros",
] }
tokio-rustls = "0.23.4"
toml = "0.7.6"
humansize = "2.1.3"
color-eyre = "0.6.2"
[dev-dependencies]
criterion = { version = "0.5.1", features = ["async_tokio", "html_reports"] }
hyper = { version = "0.14.27", features = ["client"] }
tokio = { version = "1.29.1", features = ["full"] }
lazy_static = "1.4.0"
[profile.release]
debug = 1