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" }
16language = { path = "../language" }
17ordered-float.workspace = true
18picker = { path = "../picker" }
19postage.workspace = true
20settings = { path = "../settings" }
21smol.workspace = true
22text = { path = "../text" }
23theme = { path = "../theme" }
24ui = { path = "../ui" }
25util = { path = "../util" }
26workspace = { path = "../workspace" }
27
28[dev-dependencies]
29editor = { path = "../editor", features = ["test-support"] }