[package]
edition = "2024"
rust-version = "1.85"
name = "bezel-ui"
version = "0.1.8"
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 = "date"
path = "tests/date.rs"
[[test]]
name = "focus"
path = "tests/focus.rs"
[[test]]
name = "frames"
path = "tests/frames.rs"
[[test]]
name = "input"
path = "tests/input.rs"
[[test]]
name = "list"
path = "tests/list.rs"
[[test]]
name = "menubar"
path = "tests/menubar.rs"
[[test]]
name = "pagination"
path = "tests/pagination.rs"
[[test]]
name = "popover"
path = "tests/popover.rs"
[[test]]
name = "scroll"
path = "tests/scroll.rs"
[[test]]
name = "scroll_nesting"
path = "tests/scroll_nesting.rs"
[[test]]
name = "submenu"
path = "tests/submenu.rs"
[[test]]
name = "table"
path = "tests/table.rs"
[[test]]
name = "tree"
path = "tests/tree.rs"
[[test]]
name = "trigger"
path = "tests/trigger.rs"
[[test]]
name = "widgets"
path = "tests/widgets.rs"
[dependencies.gpui]
version = "0.3.9"
package = "bezel-gpui"
[dependencies.icons]
version = "0.1.5"
features = [
"arrows",
"files",
"status",
"system",
]
default-features = false
package = "bezel-icons"
[dependencies.motion]
version = "0.1.8"
package = "bezel-motion"
[dependencies.theme]
version = "0.1.8"
package = "bezel-theme"
[dependencies.unicode-segmentation]
version = "1"
[dependencies.web-time]
version = "1"
[dev-dependencies.gpui]
version = "0.3.9"
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"))']