[package]
edition = "2024"
name = "async-web-server"
version = "0.9.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "async web server helpers"
documentation = "https://docs.rs/async-web-server"
readme = "README.md"
license = "Apache-2.0 OR MIT"
[lib]
name = "async_web_server"
path = "src/lib.rs"
[[example]]
name = "echo_server"
path = "examples/echo_server.rs"
[[example]]
name = "hello_http_or_https"
path = "examples/hello_http_or_https.rs"
[[example]]
name = "hello_https"
path = "examples/hello_https.rs"
[[example]]
name = "hello_lets_encrypt"
path = "examples/hello_lets_encrypt.rs"
[dependencies.async-http-codec]
version = "0.8.0"
[dependencies.async-io]
version = "2.6.0"
[dependencies.async-net]
version = "2.0.0"
[dependencies.async-ws]
version = "0.4"
[dependencies.futures]
version = "0.3.17"
[dependencies.http]
version = "1.4.2"
[dependencies.log]
version = "0.4.14"
[dependencies.rustls-acme]
version = "0.15.3"
[dependencies.rustls-pemfile]
version = "1.0.1"
[dev-dependencies.anyhow]
version = "1.0.44"
[dev-dependencies.clap]
version = "3.1.18"
features = ["derive"]
[dev-dependencies.rcgen]
version = "0.9.3"
[dev-dependencies.simple_logger]
version = "2.1.0"
[dev-dependencies.smol]
version = "1.2.5"