zed/crates/welcome/Cargo.toml

23 lines
458 B
TOML
Raw Normal View History

2023-02-22 05:16:47 +03: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-25 01:31:59 +03:00
editor = { path = "../editor" }
2023-02-22 05:16:47 +03:00
gpui = { path = "../gpui" }
project = { path = "../project" }
settings = { path = "../settings" }
theme = { path = "../theme" }
theme_selector = { path = "../theme_selector" }
2023-02-22 05:16:47 +03:00
util = { path = "../util" }
workspace = { path = "../workspace" }