Cargo.toml

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