[package]
edition = "2024"
rust-version = "1.90"
name = "bezel-ui"
version = "0.1.20"
authors = ["clearloop <tianyi.gc@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SwiftUI-flavored components for gpui — popovers, menus, buttons, toggles, and loaders"
homepage = "https://github.com/crabtalk/bezel"
readme = "README.md"
keywords = [
"gpui",
"gui",
"ui",
"components",
]
categories = ["gui"]
license = "MIT"
repository = "https://github.com/crabtalk/bezel"
resolver = "2"
[features]
default = []
geist-mono = []
geist-sans = []
geist-weights = ["geist-sans"]
[lib]
name = "ui"
path = "src/lib.rs"
[[test]]
name = "buttons"
path = "tests/buttons.rs"
[[test]]
name = "date"
path = "tests/date.rs"
[[test]]
name = "described"
path = "tests/described.rs"
[[test]]
name = "floating_layer"
path = "tests/floating_layer.rs"
[[test]]
name = "focus"
path = "tests/focus.rs"
[[test]]
name = "frames"
path = "tests/frames.rs"
[[test]]
name = "history"
path = "tests/history.rs"
[[test]]
name = "ime"
path = "tests/ime.rs"
[[test]]
name = "input"
path = "tests/input.rs"
[[test]]
name = "keys"
path = "tests/keys.rs"
[[test]]
name = "list"
path = "tests/list.rs"
[[test]]
name = "menubar"
path = "tests/menubar.rs"
[[test]]
name = "pagination"
path = "tests/pagination.rs"
[[test]]
name = "pickers"
path = "tests/pickers.rs"
[[test]]
name = "popover"
path = "tests/popover.rs"
[[test]]
name = "scroll"
path = "tests/scroll.rs"
[[test]]
name = "scroll_axis"
path = "tests/scroll_axis.rs"
[[test]]
name = "scroll_drift"
path = "tests/scroll_drift.rs"
[[test]]
name = "scroll_nesting"
path = "tests/scroll_nesting.rs"
[[test]]
name = "scrollbar_overlay"
path = "tests/scrollbar_overlay.rs"
[[test]]
name = "submenu"
path = "tests/submenu.rs"
[[test]]
name = "syntax"
path = "tests/syntax.rs"
[[test]]
name = "table"
path = "tests/table.rs"
[[test]]
name = "tree"
path = "tests/tree.rs"
[[test]]
name = "trigger"
path = "tests/trigger.rs"
[[test]]
name = "variable_list"
path = "tests/variable_list.rs"
[[test]]
name = "widgets"
path = "tests/widgets.rs"
[dependencies.gpui]
version = "0.3.10"
package = "bezel-gpui"
[dependencies.icons]
version = "0.1.20"
features = [
"arrows",
"notifications",
"text",
]
package = "bezel-icons"
[dependencies.motion]
version = "0.1.20"
package = "bezel-motion"
[dependencies.theme]
version = "0.1.20"
package = "bezel-theme"
[dependencies.unicode-segmentation]
version = "1"
[dependencies.web-time]
version = "1"
[dev-dependencies.gpui]
version = "0.3.10"
features = ["test-support"]
package = "bezel-gpui"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ['cfg(feature, values("cargo-clippy"))']