mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-09 00:50:04 +03:00
21 lines
378 B
TOML
21 lines
378 B
TOML
|
[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"
|
||
|
gpui = { path = "../gpui" }
|
||
|
project = { path = "../project" }
|
||
|
settings = { path = "../settings" }
|
||
|
theme = { path = "../theme" }
|
||
|
util = { path = "../util" }
|
||
|
workspace = { path = "../workspace" }
|