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