[package]
edition = "2024"
rust-version = "1.89"
name = "argui-core"
version = "0.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Geometry, color, identifiers and shared primitives for Argui"
homepage = "https://extrabinoss.github.io/argui/"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/ExtraBinoss/argui"
[lib]
name = "argui_core"
path = "src/lib.rs"
[[test]]
name = "color"
path = "tests/color.rs"
[[test]]
name = "geometry"
path = "tests/geometry.rs"
[[test]]
name = "input"
path = "tests/input.rs"
[[test]]
name = "insets"
path = "tests/insets.rs"
[[test]]
name = "keyboard"
path = "tests/keyboard.rs"
[[test]]
name = "text"
path = "tests/text.rs"
[lints.clippy]
all = "warn"
[lints.rust]
unsafe_code = "deny"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(coverage_nightly)"]