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