[package]
edition = "2024"
rust-version = "1.95"
name = "topcoat-runtime-macro"
version = "0.0.2"
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"
[features]
discover = ["topcoat-runtime-grammar/discover"]
[lib]
name = "topcoat_runtime_macro"
path = "src/lib.rs"
proc-macro = true
[dependencies.quote]
version = "1.0.45"
[dependencies.syn]
version = "2.0.117"
features = ["full"]
[dependencies.topcoat-runtime-grammar]
version = "0.0.2"
[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"