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" }
|
2024-01-03 19:58:02 +00:00
|
|
|
fuzzy = { path = "../fuzzy" }
|
2024-01-03 20:59:39 +00:00
|
|
|
gpui = { path = "../gpui" }
|
2024-01-03 20:33:51 +00:00
|
|
|
ui = { path = "../ui" }
|
2024-01-03 19:58:02 +00:00
|
|
|
language = { path = "../language" }
|
2022-04-15 21:28:01 +00:00
|
|
|
picker = { path = "../picker" }
|
2024-01-03 20:28:45 +00:00
|
|
|
settings = { path = "../settings" }
|
2024-01-03 20:33:51 +00:00
|
|
|
text = { path = "../text" }
|
2024-01-03 20:41:01 +00:00
|
|
|
theme = { path = "../theme" }
|
2024-01-03 19:08:51 +00:00
|
|
|
workspace = { path = "../workspace" }
|
2024-01-03 19:01:58 +00:00
|
|
|
util = { path = "../util" }
|
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"] }
|