[package]
edition = "2021"
rust-version = "1.88"
name = "rustango-orm-macros"
version = "0.46.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ORM-only proc-macros for rustango — Model / Form / embed_migrations. Carve-out of rustango-macros for the standalone rustango-orm crate."
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]
default = []
postgres = ["rustango/postgres"]
[lib]
name = "rustango_orm_macros"
path = "src/lib.rs"
[[test]]
name = "reexport_smoke"
path = "tests/reexport_smoke.rs"
[dependencies.rustango-macros]
version = "0.46.0"
[dev-dependencies.rustango]
version = "0.46.0"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"