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" }
15text = { path = "../text" }
16workspace = { path = "../workspace" }
17ordered-float = "2.1.1"
18postage = { version = "0.4", features = ["futures-traits"] }
19smol = "1.2"