zed/crates/gpui2/Cargo.toml

33 lines
679 B
TOML
Raw Normal View History

2023-08-30 20:40:43 +00:00
[package]
name = "gpui2"
version = "0.1.0"
edition = "2021"
publish = false
2023-08-30 21:00:11 +00:00
[lib]
name = "gpui2"
path = "src/gpui2.rs"
2023-08-30 20:40:43 +00:00
[features]
test-support = ["gpui/test-support"]
2023-08-30 20:40:43 +00:00
[dependencies]
2023-08-30 21:00:11 +00:00
anyhow.workspace = true
derive_more.workspace = true
gpui = { path = "../gpui" }
log.workspace = true
futures.workspace = true
2023-08-30 21:00:11 +00:00
gpui2_macros = { path = "../gpui2_macros" }
parking_lot.workspace = true
refineable.workspace = true
rust-embed.workspace = true
serde.workspace = true
settings = { path = "../settings" }
simplelog = "0.9"
smallvec.workspace = true
theme = { path = "../theme" }
util = { path = "../util" }
[dev-dependencies]
gpui = { path = "../gpui", features = ["test-support"] }