[package]
edition = "2024"
rust-version = "1.93"
name = "purwa"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The fundamental Rust web framework — facade re-exports"
documentation = "https://docs.rs/purwa"
readme = "README.md"
keywords = [
"purwa",
"framework",
"axum",
"inertia",
"empu",
]
categories = [
"web-programming",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/sangkan-dev/purwa"
resolver = "2"
[features]
auth = ["dep:purwa-auth"]
default = []
inertia = ["dep:purwa-inertia"]
sea-orm = [
"dep:purwa-orm",
"purwa-orm/sea-orm",
]
[lib]
name = "purwa"
path = "src/lib.rs"
[[test]]
name = "auto_registration"
path = "tests/auto_registration.rs"
[[test]]
name = "resource_routes"
path = "tests/resource_routes.rs"
[dependencies.axum]
version = "0.8"
[dependencies.inventory]
version = "0.3.24"
[dependencies.purwa-auth]
version = "0.2.0"
optional = true
[dependencies.purwa-core]
version = "0.2.0"
[dependencies.purwa-inertia]
version = "0.2.0"
optional = true
[dependencies.purwa-macros]
version = "0.2.0"
[dependencies.purwa-orm]
version = "0.2.0"
optional = true
[dev-dependencies.tokio]
version = "1.52.1"
features = [
"macros",
"rt-multi-thread",
]
[dev-dependencies.tower]
version = "0.5.3"
features = ["util"]