[package]
edition = "2024"
rust-version = "1.95"
name = "topcoat-core"
version = "0.0.3"
authors = ["Julien Scholz <hello@julien-scholz.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A modular, batteries-included Rust web framework for server-rendered apps."
readme = "README.md"
keywords = [
"web",
"framework",
"ssr",
"html",
"server",
]
categories = [
"web-programming",
"web-programming::http-server",
]
license = "MIT"
repository = "https://github.com/tokio-rs/topcoat"
resolver = "2"
[package.metadata.cargo-udeps.ignore]
development = ["topcoat"]
[features]
build = []
[lib]
name = "topcoat_core"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.anymap3]
version = "1.0"
[dependencies.boxcar]
version = "0.2"
[dependencies.hashbrown]
version = "0.17"
[dependencies.pin-project-lite]
version = "0.2"
[dependencies.tokio]
version = "1.51.1"
features = ["sync"]
[dev-dependencies.tokio]
version = "1.51.1"
features = [
"macros",
"rt",
]
[lints.clippy]
mod_module_files = "deny"
too_many_lines = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"
[lints.rustdoc]
broken_intra_doc_links = "deny"