hyperlite 0.1.0

Lightweight HTTP framework built on hyper, tokio, and tower
Documentation
[badges.maintenance]
status = "experimental"

[dependencies.bytes]
version = "1.0"

[dependencies.chrono]
features = ["serde"]
version = "0.4"

[dependencies.http]
version = "1.0"

[dependencies.http-body-util]
version = "0.1"

[dependencies.hyper]
features = ["server", "client", "http1", "http2"]
version = "1"

[dependencies.hyper-util]
features = ["tokio", "server", "http1", "service"]
version = "0.1"

[dependencies.matchit]
version = "0.9"

[dependencies.pin-project-lite]
version = "0.2"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.serde_urlencoded]
version = "0.7"

[dependencies.tokio]
features = ["rt-multi-thread", "macros", "net", "signal"]
version = "1"

[dependencies.tower]
features = ["util"]
version = "0.5"

[dependencies.tower-http]
features = ["trace"]
optional = true
version = "0.6"

[dependencies.tracing]
optional = true
version = "0.1"

[dev-dependencies.tokio]
features = ["full", "test-util"]
version = "1"

[dev-dependencies.tower]
features = ["util"]
version = "0.5"

[dev-dependencies.tower-http]
features = ["cors", "trace", "request-id"]
version = "0.6"

[dev-dependencies.tracing]
version = "0.1"

[dev-dependencies.tracing-subscriber]
features = ["env-filter"]
version = "0.3"

[dev-dependencies.uuid]
features = ["v4", "serde"]
version = "1"

[[example]]
name = "hello_world"
path = "examples/hello_world.rs"

[[example]]
name = "matchit_debug"
path = "examples/matchit_debug.rs"

[[example]]
name = "with_middleware"
path = "examples/with_middleware.rs"

[[example]]
name = "with_state"
path = "examples/with_state.rs"

[features]
default = []
full = ["tracing", "tower-http"]

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

[package]
authors = ["Hyperlite - Kriyaetive"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["web-programming::http-server"]
description = "Lightweight HTTP framework built on hyper, tokio, and tower"
documentation = "https://docs.rs/hyperlite"
edition = "2021"
exclude = [".github/", "*.md", "!README.md", "!CHANGELOG.md"]
homepage = "https://github.com/kriyaetive/hyperlite"
keywords = ["http", "web", "framework", "hyper", "tower"]
license = "MIT"
name = "hyperlite"
readme = "README.md"
repository = "https://github.com/kriyaetive/hyperlite"
version = "0.1.0"

[[test]]
name = "extract_tests"
path = "tests/extract_tests.rs"

[[test]]
name = "middleware_tests"
path = "tests/middleware_tests.rs"

[[test]]
name = "response_tests"
path = "tests/response_tests.rs"

[[test]]
name = "router_tests"
path = "tests/router_tests.rs"

[[test]]
name = "server_tests"
path = "tests/server_tests.rs"

[[test]]
name = "test_helpers"
path = "tests/test_helpers.rs"