Cargo.toml

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