[package]
edition = "2024"
rust-version = "1.97"
name = "gpui-box-util"
version = "0.1.1"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Utility types for GPUI Box"
homepage = "https://github.com/fran0220/gpui-box"
readme = false
license = "Apache-2.0"
repository = "https://github.com/fran0220/gpui-box"
[lib]
name = "gpui_util"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0.86"
[dependencies.log]
version = "0.4.16"
features = [
"kv_unstable_serde",
"serde",
]
[target.'cfg(target_os = "windows")'.dependencies.which]
version = "6.0.0"
[lints.clippy]
dbg_macro = "deny"
todo = "warn"
unwrap_used = "warn"
[lints.rust]
unsafe_op_in_unsafe_fn = "deny"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
"cfg(perf_enabled)",
"cfg(rust_analyzer)",
'cfg(feature, values("cargo-clippy", "nightly_coverage"))',
]