[package]
edition = "2021"
rust-version = "1.75"
name = "ruest-framework"
version = "0.1.0"
authors = ["hardhacklife"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "RUEST (Rust + NestJS) — framework backend : DI, modules, HTTP Axum, JWT, validation"
homepage = "https://github.com/hardhacklife/ruest"
documentation = "https://docs.rs/ruest-framework"
readme = "README.md"
keywords = [
"web",
"framework",
"nestjs",
"axum",
"api",
]
categories = [
"web-programming::http-server",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/hardhacklife/ruest"
[lib]
name = "ruest"
path = "src/lib.rs"
[[test]]
name = "container_test"
path = "tests/container_test.rs"
[[test]]
name = "framework_integration"
path = "tests/framework_integration.rs"
[[test]]
name = "jwt_test"
path = "tests/jwt_test.rs"
[[test]]
name = "module_configure"
path = "tests/module_configure.rs"
[[test]]
name = "principles"
path = "tests/principles.rs"
[[test]]
name = "workspace_structure"
path = "tests/workspace_structure.rs"
[[bench]]
name = "container_resolve"
path = "benches/container_resolve.rs"
harness = false
[[bench]]
name = "join_paths"
path = "benches/join_paths.rs"
harness = false
[dependencies.async-trait]
version = "0.1"
[dependencies.axum]
version = "0.7"
features = [
"http1",
"http2",
"json",
"macros",
"matched-path",
"multipart",
"original-uri",
"tokio",
"tower-log",
"tracing",
"ws",
"form",
"query",
]
[dependencies.bytes]
version = "1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.config]
version = "0.14"
[dependencies.dotenvy]
version = "0.15"
[dependencies.http]
version = "1"
[dependencies.http-body-util]
version = "0.1"
[dependencies.hyper]
version = "1"
features = [
"http1",
"http2",
"server",
"client",
]
[dependencies.jsonwebtoken]
version = "9"
[dependencies.ruest-macros]
version = "0.1.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tower]
version = "0.5"
[dependencies.tower-http]
version = "0.5"
features = [
"cors",
"compression-gzip",
"trace",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"json",
]
[dependencies.validator]
version = "0.18"
features = ["derive"]
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"rt-multi-thread",
"macros",
]
[dev-dependencies.tower]
version = "0.5"