[[example]]
name = "hello"
path = "examples/hello.rs"
[[example]]
name = "hello-world"
path = "examples/hello-world.rs"
[[example]]
name = "json"
path = "examples/json.rs"
[[example]]
name = "post"
path = "examples/post.rs"
[[example]]
name = "status"
path = "examples/status.rs"
[[example]]
name = "techempower"
path = "examples/techempower.rs"
[[example]]
name = "techempower_no_db"
path = "examples/techempower_no_db.rs"
[dependencies.bytes]
version = "1"
[dependencies.httparse]
version = "1"
[dependencies.httpdate]
version = "1"
[dependencies.itoa]
version = "1"
[dependencies.log]
version = "0.4"
[dependencies.may]
default-features = false
version = "0.3"
[dependencies.once_cell]
version = "1"
[dev-dependencies.atoi]
version = "2"
[dev-dependencies.buf-min]
features = ["bytes"]
version = "0.7"
[dev-dependencies.env_logger]
version = "0.11"
[dev-dependencies.log]
features = ["release_max_level_off"]
version = "0.4"
[dev-dependencies.mimalloc]
default-features = false
version = "0.1"
[dev-dependencies.nanorand]
default-features = false
features = ["std", "wyrand"]
version = "0.7"
[dev-dependencies.num_cpus]
version = "1.0"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.smallvec]
version = "1.1"
[dev-dependencies.yarte]
features = ["bytes-buf", "json"]
version = "0.15"
[features]
default = ["may/default"]
[lib]
name = "may_minihttp"
path = "src/lib.rs"
[package]
authors = ["Xudong Huang <huangxu008@hotmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["web-programming::http-server"]
description = "Mini http server that implemented on top of [may](https://github.com/Xudong-Huang/may)"
documentation = "https://docs.rs/may_minihttp"
edition = "2021"
homepage = "https://github.com/Xudong-Huang/may_minihttp.git"
keywords = ["http", "server", "may"]
license = "MIT/Apache-2.0"
name = "may_minihttp"
readme = "README.md"
repository = "https://github.com/Xudong-Huang/may_minihttp.git"
version = "0.1.8"
[profile.release]
codegen-units = 1
debug = 0
incremental = false
lto = "thin"
opt-level = 3
overflow-checks = false
panic = "abort"
[target."cfg(unix)".dev-dependencies]