[package]
edition = "2021"
name = "rust-webx"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "rust-webx — A Rust WebApi framework inspired by ASP.NET Core"
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"
[features]
testing = ["rust-webx-host/testing"]
[lib]
name = "rust_webx"
path = "src/lib.rs"
[[test]]
name = "auth_integration_test"
path = "tests/auth_integration_test.rs"
[[test]]
name = "request_path_test"
path = "tests/request_path_test.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.hyper]
version = "1"
features = ["full"]
[dependencies.inventory]
version = "0.3"
[dependencies.jsonwebtoken]
version = "9"
[dependencies.rust-dix]
version = "0.6"
[dependencies.rust-dix-macros]
version = "0.6"
[dependencies.rust-webx-core]
version = "0.3.0"
[dependencies.rust-webx-host]
version = "0.3.0"
[dependencies.rust-webx-macros]
version = "0.3.0"
[dependencies.rust-webx-openapi]
version = "0.3.0"
[dependencies.rust-webx-spa]
version = "0.3.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dev-dependencies.reqwest]
version = "0.12"
features = ["json"]
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"macros",
"rt-multi-thread",
]