-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
21 lines (20 loc) · 738 Bytes
/
Cargo.toml
File metadata and controls
21 lines (20 loc) · 738 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "goose-http"
version = "0.1.0"
edition = "2024"
description = "HTTP/1.1 server for Rust implementing RFC 9110/9111/9112 semantics, caching, and range handling"
license = "MIT"
repository = "https://github.com/goosewin/goose-http"
readme = "README.md"
keywords = ["http", "http-server", "rfc-9110", "rfc-9111", "rfc-9112"]
categories = ["network-programming"]
exclude = ["artifacts/**/*"]
[dependencies]
thiserror = "1"
bytes = "1"
tokio = { version = "1", features = ["io-util", "net", "macros", "rt", "rt-multi-thread", "time"] }
futures-core = "0.3"
futures-util = { version = "0.3", default-features = true }
httpdate = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }