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]
12db = { path = "../db" }
13editor = { package = "editor2", path = "../editor2" }
14fuzzy = { package = "fuzzy2", path = "../fuzzy2" }
15gpui = { package = "gpui2", path = "../gpui2" }
16language = { package = "language2", path = "../language2" }
17picker = { package = "picker2", path = "../picker2" }
18settings = { package = "settings2", path = "../settings2" }
19text = { package = "text2", path = "../text2" }
20util = { path = "../util"}
21theme = { package = "theme2", path = "../theme2" }
22ui = { package = "ui2", path = "../ui2" }
23workspace = { package = "workspace2", path = "../workspace2" }
24
25futures.workspace = true
26ordered-float.workspace = true
27postage.workspace = true
28smol.workspace = true
29
30[dev-dependencies]
31editor = { package = "editor2", path = "../editor2", features = ["test-support"] }