Cargo.toml

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