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