1[package]
2name = "gpui2"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[lib]
8name = "gpui2"
9path = "src/gpui2.rs"
10
11[features]
12test-support = ["gpui/test-support"]
13
14[dependencies]
15anyhow.workspace = true
16derive_more.workspace = true
17gpui = { path = "../gpui" }
18log.workspace = true
19futures.workspace = true
20gpui2_macros = { path = "../gpui2_macros" }
21parking_lot.workspace = true
22refineable.workspace = true
23rust-embed.workspace = true
24serde.workspace = true
25settings = { path = "../settings" }
26simplelog = "0.9"
27smallvec.workspace = true
28theme = { path = "../theme" }
29util = { path = "../util" }
30
31[dev-dependencies]
32gpui = { path = "../gpui", features = ["test-support"] }