Cargo.toml

 1[package]
 2name = "recent_projects"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6license = "GPL-3.0-or-later"
 7
 8[lib]
 9path = "src/recent_projects.rs"
10doctest = false
11
12[dependencies]
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" }
22ui = { path = "../ui" }
23workspace = { path = "../workspace" }
24
25futures.workspace = true
26ordered-float.workspace = true
27postage.workspace = true
28smol.workspace = true
29
30[dev-dependencies]
31editor = { path = "../editor", features = ["test-support"] }