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]
15client = { path = "../client" }
16editor = { path = "../editor" }
17fs = { path = "../fs" }
18fuzzy = {  path = "../fuzzy" }
19gpui = { path = "../gpui" }
20ui = { path = "../ui" }
21db = { path = "../db" }
22install_cli = { path = "../install_cli" }
23project = { path = "../project" }
24settings = { path = "../settings" }
25theme = { path = "../theme" }
26theme_selector = { path = "../theme_selector" }
27util = { path = "../util" }
28picker = { path = "../picker" }
29workspace = { path = "../workspace" }
30vim = { path = "../vim" }
31
32anyhow.workspace = true
33log.workspace = true
34schemars.workspace = true
35serde.workspace = true
36
37[dev-dependencies]
38editor = { path = "../editor", features = ["test-support"] }