2023-07-14 21:34:31 +00:00
|
|
|
[package]
|
|
|
|
name = "playground"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-08-23 02:47:05 +00:00
|
|
|
publish = false
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "playground"
|
|
|
|
path = "src/playground.rs"
|
2023-07-14 21:34:31 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-08-11 13:39:30 +00:00
|
|
|
anyhow.workspace = true
|
2023-08-11 06:26:58 +00:00
|
|
|
derive_more.workspace = true
|
2023-07-14 21:34:31 +00:00
|
|
|
gpui = { path = ".." }
|
|
|
|
log.workspace = true
|
2023-08-13 07:40:05 +00:00
|
|
|
playground_macros = { path = "../playground_macros" }
|
2023-08-16 18:50:35 +00:00
|
|
|
parking_lot.workspace = true
|
2023-08-18 07:03:46 +00:00
|
|
|
refineable.workspace = true
|
2023-08-11 06:26:58 +00:00
|
|
|
serde.workspace = true
|
2023-07-14 21:34:31 +00:00
|
|
|
simplelog = "0.9"
|
2023-08-11 06:26:58 +00:00
|
|
|
smallvec.workspace = true
|
2023-08-13 23:29:07 +00:00
|
|
|
taffy = { git = "https://github.com/DioxusLabs/taffy", rev = "dab541d6104d58e2e10ce90c4a1dad0b703160cd", features = ["flexbox"] }
|
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"] }
|