[package]
edition = "2024"
name = "boltz-component"
version = "0.1.0"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Mid-level layout and component infrastructure for the boltz UI toolkit."
readme = false
license = "GPL-3.0-or-later"
repository = "https://github.com/boltz-one/rust-dex"
resolver = "2"
[features]
default = []
[lib]
name = "boltz_component"
path = "src/component.rs"
[dependencies.collections]
version = "0.1.0"
package = "boltz-collections"
[dependencies.gpui]
version = "0.2.2"
default-features = false
package = "boltz-gpui"
[dependencies.inventory]
version = "0.3.19"
[dependencies.parking_lot]
version = "0.12.1"
[dependencies.strum]
version = "0.27.2"
features = ["derive"]
[dependencies.theme]
version = "0.1.0"
package = "boltz-theme"
[dev-dependencies.documented]
version = "0.9.1"
[lints.clippy]
dbg_macro = "deny"
declare_interior_mutable_const = "deny"
disallowed_methods = "deny"
large_enum_variant = "allow"
let_underscore_future = "allow"
nonminimal_bool = "allow"
redundant_clone = "deny"
single_range_in_vec_init = "allow"
todo = "deny"
too_many_arguments = "allow"
type_complexity = "allow"
[lints.clippy.style]
level = "allow"
priority = -1
[lints.rust.unexpected_cfgs]
level = "allow"
priority = 0