-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (41 loc) · 1.28 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
[package]
name = "httprs"
description = "A fast simple command line http server tool"
version = "0.2.4"
edition = "2021"
authors = ["10fish <[email protected]>"]
license-file = "LICENSE"
repository = "https://github.com/10fish/httprs"
rust-version = "1.64.0"
documentation = "https://docs.rs/httprs"
readme = "README.md"
keywords = ["http", "server", "static", "tls", "partial_content"]
include = ["src/**/*", "static/**/*", "Cargo.toml", "COPYRIGHT", "LICENSE", "README.md"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "^1.38", features = ["full"] }
hyper = { version = "1", features = ["full"] }
http-body-util = "0.1"
hyper-util = { version = "0.1", features = ["full"] }
walkdir = "2"
clap = { version = "^4", features = ["derive", "wrap_help"] }
colored = "^2"
toml = "0.8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
bytes = "^1.10"
urlencoding = "2"
tokio-util = { version = "0.7", features = ["rt"] }
futures-util = "0.3"
regex = "^1.9"
serde = { version = "1", features = ["derive"] }
lazy_static = "1"
chrono = "0.4"
log = "0.4"
rustls = "0.23"
tokio-rustls = "0.26"
[[bin]]
name = "httprs"
path = "src/bin/serve.rs"
[badges]
maintenance = { status = "experimental" }