Cargo.toml

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