Cargo.toml

 1[package]
 2name = "recent_projects"
 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 = { path = "../editor" }
14fuzzy = { path = "../fuzzy" }
15gpui = { path = "../gpui" }
16language = { path = "../language" }
17picker = { path = "../picker" }
18settings = { path = "../settings" }
19text = { path = "../text" }
20util = { path = "../util"}
21theme = { path = "../theme" }
22workspace = { path = "../workspace" }
23
24futures.workspace = true
25ordered-float.workspace = true
26postage.workspace = true
27smol.workspace = true
28
29[dev-dependencies]
30editor = { path = "../editor", features = ["test-support"] }