Cargo.toml

 1[package]
 2name = "recent_projects"
 3version = "0.1.0"
 4edition = "2021"
 5
 6[lib]
 7path = "src/recent_projects.rs"
 8doctest = false
 9
10[dependencies]
11db = { path = "../db" }
12editor = { path = "../editor" }
13fuzzy = { path = "../fuzzy" }
14gpui = { path = "../gpui" }
15language = { path = "../language" }
16picker = { path = "../picker" }
17settings = { path = "../settings" }
18text = { path = "../text" }
19workspace = { path = "../workspace" }
20ordered-float = "2.1.1"
21postage = { version = "0.4", features = ["futures-traits"] }
22smol = "1.2"