nestforge-http 1.9.0

HTTP runtime and app factory for NestForge
Documentation
[package]

name = "nestforge-http"

version = { workspace = true }

edition = { workspace = true }

license = { workspace = true }

repository = { workspace = true }

homepage = { workspace = true }

readme = "../../README.md"

description = "HTTP runtime and app factory for NestForge"

keywords = ["rust", "framework", "http", "axum", "nestforge"]

categories = ["web-programming", "web-programming::http-server"]



[dependencies]

axum = { workspace = true } # axum is the HTTP engine under the hood.

tokio = { workspace = true } # tokio runs the async server.

anyhow = { workspace = true } # anyhow for simple Result returns while we build the foundation.

tower = { workspace = true }

nestforge-core = { version = "1.9.0", path = "../nestforge-core" } # local core crate (DI container + traits).