[package]
edition = "2021"
name = "glassy-ui"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "glassy-gallery"
description = "Glassy UI components for native GPUI interfaces."
readme = "README.md"
license = "MIT"
repository = "https://github.com/lassejlv/glassy-ui"
[lib]
name = "glassy_ui"
path = "src/lib.rs"
[[bin]]
name = "glassy-gallery"
path = "src/main.rs"
[[test]]
name = "alert_dialog_interaction"
path = "tests/alert_dialog_interaction.rs"
[[test]]
name = "context_menu_interaction"
path = "tests/context_menu_interaction.rs"
[[test]]
name = "dialog_interaction"
path = "tests/dialog_interaction.rs"
[[test]]
name = "dropdown_menu_interaction"
path = "tests/dropdown_menu_interaction.rs"
[[test]]
name = "form_interaction"
path = "tests/form_interaction.rs"
[[test]]
name = "popover_interaction"
path = "tests/popover_interaction.rs"
[[test]]
name = "select_interaction"
path = "tests/select_interaction.rs"
[[test]]
name = "tooltip_interaction"
path = "tests/tooltip_interaction.rs"
[dependencies.gpui]
version = "0.2.2"
features = [
"font-kit",
"wayland",
"x11",
]
[dev-dependencies.gpui]
version = "0.2.2"
features = ["test-support"]