[package]
edition = "2024"
name = "shibari-macros"
version = "0.0.0"
authors = ["raykast <me@june-s.net>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tools for complex (keyboard) bindings — proc-macro definitions"
readme = false
license = "AGPL-3.0-or-later"
repository = "https://github.com/ray-kast/wi"
resolver = "2"
[lib]
name = "shibari_macros"
path = "src/lib.rs"
proc-macro = true
[dependencies.indexmap]
version = "2.12.0"
[dependencies.proc-macro2]
version = "1.0.101"
[dependencies.quote]
version = "1.0.41"
[dependencies.shibari-grammar]
version = "0.0.0"
[dependencies.syn]
version = "2.0.107"
features = ["full"]
[lints.clippy]
clone_on_ref_ptr = "deny"
disallowed_methods = "deny"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.clippy.style]
level = "deny"
priority = -1
[lints.clippy.suspicious]
level = "deny"
priority = -1
[lints.rust]
missing_copy_implementations = "deny"
missing_debug_implementations = "deny"
[lints.rustdoc]
broken_intra_doc_links = "deny"