2022-01-13 05:17:19 +03:00
|
|
|
[package]
|
|
|
|
name = "outline"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/outline.rs"
|
2022-03-04 03:15:56 +03:00
|
|
|
doctest = false
|
2022-01-13 05:17:19 +03:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
editor = { path = "../editor" }
|
2022-01-13 17:10:50 +03:00
|
|
|
fuzzy = { path = "../fuzzy" }
|
2022-01-13 05:17:19 +03:00
|
|
|
gpui = { path = "../gpui" }
|
2022-01-13 14:01:11 +03:00
|
|
|
language = { path = "../language" }
|
|
|
|
text = { path = "../text" }
|
2022-01-13 05:17:19 +03:00
|
|
|
workspace = { path = "../workspace" }
|
2022-01-13 18:44:06 +03:00
|
|
|
ordered-float = "2.1.1"
|
2022-01-13 05:17:19 +03:00
|
|
|
postage = { version = "0.4", features = ["futures-traits"] }
|
2022-01-14 01:04:25 +03:00
|
|
|
smol = "1.2"
|