2022-03-29 12:01:15 +00:00
|
|
|
[package]
|
|
|
|
name = "breadcrumbs"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-01-18 20:28:02 +00:00
|
|
|
publish = false
|
2022-03-29 12:01:15 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/breadcrumbs.rs"
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
collections = { path = "../collections" }
|
2024-01-03 18:58:57 +00:00
|
|
|
editor = { path = "../editor" }
|
2024-01-03 20:59:39 +00:00
|
|
|
gpui = { path = "../gpui" }
|
2024-01-03 20:33:51 +00:00
|
|
|
ui = { path = "../ui" }
|
2024-01-03 19:58:02 +00:00
|
|
|
language = { path = "../language" }
|
2024-01-03 19:53:24 +00:00
|
|
|
project = { path = "../project" }
|
2024-01-03 18:52:40 +00:00
|
|
|
search = { path = "../search" }
|
2024-01-03 20:28:45 +00:00
|
|
|
settings = { path = "../settings" }
|
2024-01-03 20:41:01 +00:00
|
|
|
theme = { path = "../theme" }
|
2024-01-03 19:08:51 +00:00
|
|
|
workspace = { path = "../workspace" }
|
2024-01-03 19:01:58 +00:00
|
|
|
outline = { path = "../outline" }
|
2022-09-06 21:39:58 +00:00
|
|
|
itertools = "0.10"
|
2022-03-29 12:01:15 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-01-03 18:58:57 +00:00
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|
2024-01-03 20:59:39 +00:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2024-01-03 19:08:51 +00:00
|
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|