1[package]
2name = "breadcrumbs"
3version = "0.1.0"
4edition = "2021"
5publish = false
6license = "GPL-3.0-or-later"
7
8[lib]
9path = "src/breadcrumbs.rs"
10doctest = false
11
12[dependencies]
13collections = { path = "../collections" }
14editor = { path = "../editor" }
15gpui = { path = "../gpui" }
16itertools = "0.10"
17language = { path = "../language" }
18outline = { path = "../outline" }
19project = { path = "../project" }
20search = { path = "../search" }
21settings = { path = "../settings" }
22theme = { path = "../theme" }
23ui = { path = "../ui" }
24workspace = { path = "../workspace" }
25
26[dev-dependencies]
27editor = { path = "../editor", features = ["test-support"] }
28gpui = { path = "../gpui", features = ["test-support"] }
29workspace = { path = "../workspace", features = ["test-support"] }