zed/crates/gpui/playground/Cargo.toml

24 lines
447 B
TOML
Raw Normal View History

[[bin]]
name = "playground"
path = "src/playground.rs"
[package]
name = "playground"
version = "0.1.0"
edition = "2021"
[dependencies]
2023-08-11 13:39:30 +00:00
anyhow.workspace = true
2023-08-11 06:26:58 +00:00
derive_more.workspace = true
gpui = { path = ".." }
log.workspace = true
2023-08-11 06:26:58 +00:00
optional_struct = "0.3.1"
serde.workspace = true
simplelog = "0.9"
2023-08-11 06:26:58 +00:00
smallvec.workspace = true
2023-08-12 06:56:34 +00:00
taffy = "0.3.12"
2023-08-11 13:39:30 +00:00
util = { path = "../../util" }
2023-08-02 02:53:15 +00:00
[dev-dependencies]
gpui = { path = "..", features = ["test-support"] }