26 lines
533 B
TOML
26 lines
533 B
TOML
[package]
|
|
name = "gpui_elements"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
license = "Apache-2.0"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.cargo-machete]
|
|
ignored = ["gpui"]
|
|
|
|
[dependencies]
|
|
gpui.workspace = true
|
|
unicode-segmentation.workspace = true
|
|
smallvec.workspace = true
|
|
|
|
[dev-dependencies]
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
gpui_platform = { workspace = true, features = ["font-kit", "wayland", "x11"] }
|
|
|
|
[[example]]
|
|
name = "editable_text"
|
|
path = "examples/editable_text.rs"
|