Cargo.toml

 1[package]
 2name = "outline"
 3version = "0.1.0"
 4edition = "2021"
 5
 6[lib]
 7path = "src/outline.rs"
 8doctest = false
 9
10[dependencies]
11editor = { path = "../editor" }
12fuzzy = { path = "../fuzzy" }
13gpui = { path = "../gpui" }
14language = { path = "../language" }
15settings = { path = "../settings" }
16text = { path = "../text" }
17workspace = { path = "../workspace" }
18ordered-float = "2.1.1"
19postage = { version = "0.4", features = ["futures-traits"] }
20smol = "1.2"