Cargo.toml

 1[package]
 2name = "welcome"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6license = "GPL-3.0-or-later"
 7
 8[lib]
 9path = "src/welcome.rs"
10
11[features]
12test-support = []
13
14[dependencies]
15anyhow.workspace = true
16client = { path = "../client" }
17db = { path = "../db" }
18editor = { path = "../editor" }
19fs = { path = "../fs" }
20fuzzy = {  path = "../fuzzy" }
21gpui = { path = "../gpui" }
22install_cli = { path = "../install_cli" }
23log.workspace = true
24picker = { path = "../picker" }
25project = { path = "../project" }
26schemars.workspace = true
27serde.workspace = true
28settings = { path = "../settings" }
29theme = { path = "../theme" }
30theme_selector = { path = "../theme_selector" }
31ui = { path = "../ui" }
32util = { path = "../util" }
33vim = { path = "../vim" }
34workspace = { path = "../workspace" }
35
36[dev-dependencies]
37editor = { path = "../editor", features = ["test-support"] }