zed/crates/recent_projects/Cargo.toml

31 lines
713 B
TOML
Raw Normal View History

2022-12-14 23:59:50 +00:00
[package]
name = "recent_projects"
version = "0.1.0"
edition = "2021"
publish = false
license = "GPL-3.0-or-later"
2022-12-14 23:59:50 +00:00
[lib]
path = "src/recent_projects.rs"
doctest = false
[dependencies]
editor = { path = "../editor" }
futures.workspace = true
fuzzy = { path = "../fuzzy" }
gpui = { path = "../gpui" }
language = { path = "../language" }
ordered-float.workspace = true
picker = { path = "../picker" }
postage.workspace = true
settings = { path = "../settings" }
smol.workspace = true
text = { path = "../text" }
theme = { path = "../theme" }
ui = { path = "../ui" }
util = { path = "../util" }
workspace = { path = "../workspace" }
2023-05-20 15:54:38 +00:00
[dev-dependencies]
editor = { path = "../editor", features = ["test-support"] }