[package]
edition = "2021"
name = "rust-webx-core"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "rust-webx core traits: IRequest, IRequestHandler, IMiddleware, IHttpContext, IMediator, and more"
homepage = "https://gitcode.com/rf2026/rust-webx"
documentation = "https://docs.rs/rust-webx"
readme = "README.md"
keywords = [
"web",
"http",
"async",
"framework",
"aspnet-core",
]
categories = [
"web-programming",
"asynchronous",
]
license = "MIT"
repository = "https://gitcode.com/rf2026/rust-webx"
[lib]
name = "rust_webx_core"
path = "src/lib.rs"
[[test]]
name = "config_test"
path = "tests/config_test.rs"
[[test]]
name = "error_test"
path = "tests/error_test.rs"
[[test]]
name = "http_context_test"
path = "tests/http_context_test.rs"
[[test]]
name = "http_method_test"
path = "tests/http_method_test.rs"
[[test]]
name = "paths_test"
path = "tests/paths_test.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.inventory]
version = "0.3"
[dependencies.rust-dix]
version = "0.6"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"full",
"sync",
"macros",
]
[dependencies.tracing]
version = "0.1"