1[package]
2name = "playground"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[[bin]]
8name = "playground"
9path = "src/playground.rs"
10
11[dependencies]
12anyhow.workspace = true
13derive_more.workspace = true
14gpui = { path = ".." }
15log.workspace = true
16playground_macros = { path = "../playground_macros" }
17parking_lot.workspace = true
18refineable.workspace = true
19serde.workspace = true
20simplelog = "0.9"
21smallvec.workspace = true
22taffy = { git = "https://github.com/DioxusLabs/taffy", rev = "dab541d6104d58e2e10ce90c4a1dad0b703160cd", features = ["flexbox"] }
23util = { path = "../../util" }
24
25[dev-dependencies]
26gpui = { path = "..", features = ["test-support"] }