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