-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (32 loc) · 1.06 KB
/
Cargo.toml
File metadata and controls
34 lines (32 loc) · 1.06 KB
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 = "basic-http-server"
version = "0.10.1"
authors = ["Brian Anderson <andersrb@gmail.com>"]
license = "MIT OR Apache-2.0"
description = "A simple static HTTP file server, for learning and local development"
homepage = "https://github.com/brson/basic-http-server"
repository = "https://github.com/brson/basic-http-server"
readme = "README.md"
edition = "2024"
rust-version = "1.85"
keywords = ["http", "server", "static", "file-server"]
categories = ["command-line-utilities", "web-programming::http-server"]
exclude = ["tests/"]
[dependencies]
axum = "0.8"
clap = { version = "4", features = ["derive"] }
comrak = { version = "0.34", features = ["syntect"] }
syntect = "5"
http = "1"
mime = "0.3"
mime_guess = "2"
percent-encoding = "2"
thiserror = "2"
tokio = { version = "1", features = ["full"] }
tower = "0.5"
tower-http = { version = "0.6", features = ["fs"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[dev-dependencies]
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls"] }
tempfile = "3"