Show breadcrumbs in the toolbar

This commit is contained in:
Antonio Scandurra 2022-03-29 14:01:15 +02:00
parent 099250c691
commit 13f42550c9
7 changed files with 147 additions and 0 deletions

View file

@ -0,0 +1,21 @@
[package]
name = "breadcrumbs"
version = "0.1.0"
edition = "2021"
[lib]
path = "src/breadcrumbs.rs"
doctest = false
[dependencies]
collections = { path = "../collections" }
editor = { path = "../editor" }
gpui = { path = "../gpui" }
language = { path = "../language" }
theme = { path = "../theme" }
workspace = { path = "../workspace" }
[dev-dependencies]
editor = { path = "../editor", features = ["test-support"] }
gpui = { path = "../gpui", features = ["test-support"] }
workspace = { path = "../workspace", features = ["test-support"] }