Cargo.toml

 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" }
17settings = { path = "../settings" }
18theme = { path = "../theme" }
19workspace = { path = "../workspace" }
20itertools = "0.10"
21
22[dev-dependencies]
23editor = { path = "../editor", features = ["test-support"] }
24gpui = { path = "../gpui", features = ["test-support"] }
25workspace = { path = "../workspace", features = ["test-support"] }