-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 856 Bytes
/
Cargo.toml
File metadata and controls
28 lines (25 loc) · 856 Bytes
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
[package]
name = "microhttp-rs"
version = "0.1.0"
edition = "2021"
description = "A minimal HTTP parser library"
license = "MIT"
repository = "https://github.com/umit/microhttp-rs"
documentation = "https://docs.rs/microhttp-rs"
readme = "README.md"
keywords = ["http", "parser", "web", "server", "protocol"]
categories = ["web-programming", "network-programming", "parser-implementations"]
# Library configuration
[lib]
name = "microhttp_rs"
path = "src/lib.rs"
[dependencies]
# Only include the features we actually need
tokio = { version = "1.36.0", features = ["rt", "rt-multi-thread", "io-util", "net", "sync", "macros", "time", "signal"] }
thiserror = { version = "2.0.12" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
log = "0.4"
[dev-dependencies]
tokio = { version = "1.36.0", features = ["full"] }
env_logger = "0.10"