[package]
edition = "2024"
name = "gpui-component-macros"
version = "0.6.0"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Procedural macros for GPUI Component, the styled layer of GPUI Kit."
readme = false
license = "Apache-2.0"
resolver = "2"
[package.metadata.cargo-machete]
ignored = [
"proc-macro2",
"core-text",
]
[lib]
name = "gpui_component_macros"
path = "src/lib.rs"
proc-macro = true
[dependencies.proc-macro-crate]
version = "3.5"
[dependencies.proc-macro2]
version = "1.0"
[dependencies.quote]
version = "1.0"
[dependencies.syn]
version = "2.0"
[lints.clippy]
almost_complete_range = "allow"
arc_with_non_send_sync = "allow"
borrowed_box = "allow"
dbg_macro = "deny"
let_underscore_future = "allow"
manual_is_multiple_of = "allow"
map_entry = "allow"
module_inception = "allow"
non_canonical_partial_ord_impl = "allow"
reversed_empty_ranges = "allow"
single_range_in_vec_init = "allow"
todo = "deny"
type_complexity = "allow"
useless_conversion = "allow"
[lints.clippy.style]
level = "allow"
priority = -1