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