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