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"}
21workspace = { path = "../workspace" }
22
23ordered-float.workspace = true
24postage.workspace = true
25smol.workspace = true