Cargo.toml

 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" }
15ui = { path = "../ui" }
16language = { path = "../language" }
17project = { path = "../project" }
18search = { path = "../search" }
19settings = { path = "../settings" }
20theme = { path = "../theme" }
21workspace = { path = "../workspace" }
22outline = { path = "../outline" }
23itertools = "0.10"
24
25[dev-dependencies]
26editor = { path = "../editor", features = ["test-support"] }
27gpui = { path = "../gpui", features = ["test-support"] }
28workspace = { path = "../workspace", features = ["test-support"] }