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