zed/crates/welcome/Cargo.toml

24 lines
500 B
TOML
Raw Normal View History

2023-02-22 02:16:47 +00:00
[package]
name = "welcome"
version = "0.1.0"
edition = "2021"
publish = false
[lib]
path = "src/welcome.rs"
[features]
test-support = []
[dependencies]
anyhow = "1.0.38"
log = "0.4"
2023-02-24 22:31:59 +00:00
editor = { path = "../editor" }
2023-02-22 02:16:47 +00:00
gpui = { path = "../gpui" }
install_cli = { path = "../install_cli" }
2023-02-22 02:16:47 +00:00
project = { path = "../project" }
settings = { path = "../settings" }
theme = { path = "../theme" }
theme_selector = { path = "../theme_selector" }
2023-02-22 02:16:47 +00:00
util = { path = "../util" }
workspace = { path = "../workspace" }