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