moonbeam 0.7.2

A single-threaded-first async HTTP server
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "moonbeam"
version = "0.7.2"
authors = ["Jens Taylor"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A single-threaded-first async HTTP server"
readme = "README.md"
keywords = [
    "http-server",
    "async",
    "single-threaded",
]
categories = [
    "web-programming::http-server",
    "asynchronous",
]
license = "MIT"
repository = "https://github.com/jensyt/moonbeam"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
assets = []
catchpanic = []
compress = [
    "dep:flate2",
    "dep:brotli",
]
default = [
    "assets",
    "macros",
    "catchpanic",
    "signals",
    "router",
]
disable-simd = []
macros = ["dep:moonbeam-attributes"]
mt = []
router = [
    "macros",
    "moonbeam-attributes/router",
    "moonbeam-attributes/autohead",
]
signals = ["dep:async-signal"]
tls = [
    "dep:rustls",
    "dep:futures-rustls",
    "dep:rustls-pemfile",
]
tracing = ["dep:tracing"]

[lib]
name = "moonbeam"
path = "src/lib.rs"

[dependencies.async-executor]
version = "1.13"

[dependencies.async-io]
version = "2.6"

[dependencies.async-net]
version = "2.0"

[dependencies.async-signal]
version = "0.2"
optional = true

[dependencies.blocking]
version = "1.6"

[dependencies.brotli]
version = "8"
features = ["std"]
optional = true

[dependencies.flate2]
version = "1.1"
optional = true

[dependencies.flume]
version = "0.12"
features = ["async"]
default-features = false

[dependencies.futures-lite]
version = "2.6"
features = ["std"]
default-features = false

[dependencies.futures-rustls]
version = "0.26"
optional = true

[dependencies.httparse]
version = "1.10"

[dependencies.httpdate]
version = "1.0"

[dependencies.moonbeam-attributes]
version = "0.4"
optional = true

[dependencies.rustls]
version = "0.23"
optional = true

[dependencies.rustls-pemfile]
version = "2.1"
optional = true

[dependencies.tracing]
version = "0.1"
features = ["std"]
optional = true
default-features = false

[dev-dependencies.piper]
version = "0.2"

[dev-dependencies.rcgen]
version = "0.14"