-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (45 loc) · 1.2 KB
/
Cargo.toml
File metadata and controls
48 lines (45 loc) · 1.2 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "httpbox"
version = "0.2.0"
edition = "2024"
rust-version = "1.94.0"
repository = "https://github.com/kevinastone/httpbox"
[[bin]]
name = "httpbox"
path = "src/main.rs"
[dependencies]
anyhow = "^1.0.27"
askama = "^0.14"
async-trait = "^0.1"
clap = { version = "^4.0.29", features = ["derive", "env"] }
clap_complete = "^4.0"
cookie = "^0.18.1"
futures = "^0.3.1"
futures-timer = "^3.0"
headers = "^0.4"
http-body-util = "^0.1.0"
hyper = { version = "^1.0", features = ["full"] }
hyper_body = { path = "hyper_body" }
hyper-util = { version = "^0.1.20", features = [
"server",
"server-auto",
"tokio",
] }
itertools = "^0.14.0"
mime = "^0.3.13"
rand = { version = "^0.9" }
serde = "^1.0.98"
serde_derive = "^1.0.98"
serde_urlencoded = "^0.7"
tokio = { version = "^1.50.0", features = ["full"] }
tokio-stream = { version = "^0.1.18", features = ["net"] }
tower = { version = "^0.5.2", features = ["full"] }
tower-http = { version = "^0.6.8", features = ["timeout", "trace"] }
tracing = "^0.1"
tracing-subscriber = { version = "^0.3", features = ["env-filter"] }
uri_path = { path = "uri_path" }
url = "^2.2.1"
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"