Cargo.toml

 1[package]
 2name = "recent_projects2"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6
 7[lib]
 8path = "src/recent_projects.rs"
 9doctest = false
10
11[dependencies]
12editor = { package = "editor2", path = "../editor2" }
13fuzzy = { package = "fuzzy2", path = "../fuzzy2" }
14gpui = { package = "gpui2", path = "../gpui2" }
15language = { package = "language2", path = "../language2" }
16picker = { package = "picker2", path = "../picker2" }
17settings = { package = "settings2", path = "../settings2" }
18text = { package = "text2", path = "../text2" }
19util = { path = "../util"}
20theme = { package = "theme2", path = "../theme2" }
21ui = { package = "ui2", path = "../ui2" }
22workspace = { package = "workspace2", path = "../workspace2" }
23
24futures.workspace = true
25ordered-float.workspace = true
26postage.workspace = true
27smol.workspace = true
28
29[dev-dependencies]
30editor = { package = "editor2", path = "../editor2", features = ["test-support"] }