Cargo.toml

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