[package]
edition = "2024"
name = "graphrecords-macros"
version = "0.5.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance graph-based data records"
readme = "README.md"
license = "MIT"
repository = "https://github.com/medmodels/graphrecords"
resolver = "2"
[lib]
name = "graphrecords_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"]
[lints.clippy]
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
missing_errors_doc = "allow"
option_if_let_else = "allow"
similar_names = "allow"
too_many_lines = "allow"
used_underscore_items = "allow"
[lints.clippy.nursery]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1