2022-12-14 23:59:50 +00:00
|
|
|
[package]
|
|
|
|
name = "recent_projects"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-01-18 20:28:02 +00:00
|
|
|
publish = false
|
2022-12-14 23:59:50 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/recent_projects.rs"
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
db = { path = "../db" }
|
|
|
|
editor = { path = "../editor" }
|
|
|
|
fuzzy = { path = "../fuzzy" }
|
|
|
|
gpui = { path = "../gpui" }
|
|
|
|
language = { path = "../language" }
|
|
|
|
picker = { path = "../picker" }
|
|
|
|
settings = { path = "../settings" }
|
|
|
|
text = { path = "../text" }
|
2023-03-28 14:21:59 +00:00
|
|
|
util = { path = "../util"}
|
2023-05-17 21:44:55 +00:00
|
|
|
theme = { path = "../theme" }
|
2023-04-25 00:41:55 +00:00
|
|
|
workspace = { path = "../workspace" }
|
|
|
|
|
|
|
|
ordered-float.workspace = true
|
|
|
|
postage.workspace = true
|
|
|
|
smol.workspace = true
|
2023-05-20 15:54:38 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|