[package]
edition = "2021"
rust-version = "1.88"
name = "rustango-macros"
version = "0.28.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Proc-macros for rustango: #[derive(Model)] and friends."
homepage = "https://github.com/ujeenet/rustango"
documentation = "https://docs.rs/rustango"
readme = "README.md"
keywords = [
"web-framework",
"orm",
"django",
"sqlite",
"async",
]
categories = [
"web-programming::http-server",
"database",
"asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ujeenet/rustango"
[features]
openapi = []
[lib]
name = "rustango_macros"
path = "src/lib.rs"
proc-macro = true
[dependencies.proc-macro2]
version = "1"
[dependencies.quote]
version = "1"
[dependencies.serde_json]
version = "1"
[dependencies.syn]
version = "2"
features = [
"full",
"extra-traits",
]
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"