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
|
2024-01-27 15:51:16 +03:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 19:40:30 +03:00
|
|
|
|
2022-03-29 15:01:15 +03:00
|
|
|
[lib]
|
|
|
|
path = "src/breadcrumbs.rs"
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2024-02-06 22:41:36 +03:00
|
|
|
collections.workspace = true
|
|
|
|
editor.workspace = true
|
|
|
|
gpui.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
itertools = "0.10"
|
2024-02-06 22:41:36 +03:00
|
|
|
language.workspace = true
|
|
|
|
outline.workspace = true
|
|
|
|
project.workspace = true
|
|
|
|
search.workspace = true
|
|
|
|
settings.workspace = true
|
|
|
|
theme.workspace = true
|
|
|
|
ui.workspace = true
|
|
|
|
workspace.workspace = true
|
2022-03-29 15:01:15 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-06 22:41:36 +03:00
|
|
|
editor = { workspace = true, features = ["test-support"] }
|
|
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
|
|
workspace = { workspace = true, features = ["test-support"] }
|