Cargo.toml

 1[package]
 2name = "outline2"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6
 7[lib]
 8path = "src/outline.rs"
 9doctest = false
10
11[dependencies]
12editor = { package = "editor2", path = "../editor2" }
13fuzzy = { package = "fuzzy2", path = "../fuzzy2" }
14gpui = { package = "gpui2", path = "../gpui2" }
15ui = { package = "ui2", path = "../ui2" }
16language = { package = "language2", path = "../language2" }
17picker = { package = "picker2", path = "../picker2" }
18settings = { package = "settings2", path = "../settings2" }
19text = { package = "text2", path = "../text2" }
20theme = { package = "theme2", path = "../theme2" }
21workspace = { package = "workspace2", path = "../workspace2" }
22util = { path = "../util" }
23
24ordered-float.workspace = true
25postage.workspace = true
26smol.workspace = true
27
28[dev-dependencies]
29editor = { package = "editor2", path = "../editor2", features = ["test-support"] }