[package]
edition = "2024"
rust-version = "1.85"
name = "oximo-macros"
version = "0.3.0"
authors = ["Germán Martín Heim <german.martin.heim@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Internal procedural macros for oximo, re-exported through oximo-core"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/oximo-rs/oximo"
[lib]
name = "oximo_macros"
path = "src/lib.rs"
proc-macro = true
[dependencies.proc-macro-crate]
version = "3"
[dependencies.proc-macro2]
version = "1"
[dependencies.quote]
version = "1"
[dependencies.syn]
version = "2"
features = [
"full",
"full",
]
[lints.clippy]
doc_markdown = "allow"
elidable_lifetime_names = "allow"
items_after_statements = "allow"
missing_fields_in_debug = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_lifetimes = "allow"
needless_pass_by_value = "allow"
return_self_not_must_use = "allow"
similar_names = "allow"
unnecessary_literal_bound = "allow"
upper_case_acronyms = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
unsafe_code = "deny"