Cargo.toml

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