Cargo.toml

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