2022-01-13 02:17:19 +00:00
|
|
|
[package]
|
|
|
|
name = "outline"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-01-18 20:28:02 +00:00
|
|
|
publish = false
|
2022-01-13 02:17:19 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/outline.rs"
|
2022-03-04 00:15:56 +00:00
|
|
|
doctest = false
|
2022-01-13 02:17:19 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
editor = { path = "../editor" }
|
2022-01-13 14:10:50 +00:00
|
|
|
fuzzy = { path = "../fuzzy" }
|
2022-01-13 02:17:19 +00:00
|
|
|
gpui = { path = "../gpui" }
|
2022-01-13 11:01:11 +00:00
|
|
|
language = { path = "../language" }
|
2022-04-15 21:28:01 +00:00
|
|
|
picker = { path = "../picker" }
|
2022-04-06 00:10:17 +00:00
|
|
|
settings = { path = "../settings" }
|
2022-01-13 11:01:11 +00:00
|
|
|
text = { path = "../text" }
|
2023-05-17 21:44:55 +00:00
|
|
|
theme = { path = "../theme" }
|
2022-01-13 02:17:19 +00:00
|
|
|
workspace = { path = "../workspace" }
|
2023-05-17 21:44:55 +00:00
|
|
|
|
2023-04-25 00:41:55 +00:00
|
|
|
ordered-float.workspace = true
|
|
|
|
postage.workspace = true
|
|
|
|
smol.workspace = true
|
2023-05-20 15:54:38 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|