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