mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-29 04:20:46 +00:00
24 lines
614 B
TOML
24 lines
614 B
TOML
[[bin]]
|
|
name = "playground"
|
|
path = "src/playground.rs"
|
|
|
|
[package]
|
|
name = "playground"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
derive_more.workspace = true
|
|
gpui = { path = ".." }
|
|
log.workspace = true
|
|
optional_struct = "0.3.1"
|
|
playground_macros = { path = "../playground_macros" }
|
|
serde.workspace = true
|
|
simplelog = "0.9"
|
|
smallvec.workspace = true
|
|
taffy = { git = "https://github.com/DioxusLabs/taffy", rev = "dab541d6104d58e2e10ce90c4a1dad0b703160cd", features = ["flexbox"] }
|
|
util = { path = "../../util" }
|
|
|
|
[dev-dependencies]
|
|
gpui = { path = "..", features = ["test-support"] }
|