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]
12editor = { path = "../editor" }
13fuzzy = { path = "../fuzzy" }
14gpui = { path = "../gpui" }
15language = { path = "../language" }
16picker = { path = "../picker" }
17settings = { path = "../settings" }
18text = { path = "../text" }
19util = { path = "../util"}
20theme = { path = "../theme" }
21ui = { path = "../ui" }
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"] }