2022-03-29 12:01:15 +00:00
|
|
|
[package]
|
|
|
|
name = "breadcrumbs"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/breadcrumbs.rs"
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
collections = { path = "../collections" }
|
|
|
|
editor = { path = "../editor" }
|
|
|
|
gpui = { path = "../gpui" }
|
|
|
|
language = { path = "../language" }
|
2022-04-02 14:10:10 +00:00
|
|
|
project = { path = "../project" }
|
2022-03-31 16:36:39 +00:00
|
|
|
search = { path = "../search" }
|
2022-04-06 00:10:17 +00:00
|
|
|
settings = { path = "../settings" }
|
2022-03-29 12:01:15 +00:00
|
|
|
theme = { path = "../theme" }
|
|
|
|
workspace = { path = "../workspace" }
|
2022-09-06 21:39:58 +00:00
|
|
|
itertools = "0.10"
|
2022-03-29 12:01:15 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|