2022-01-27 16:39:58 +00:00
|
|
|
[package]
|
|
|
|
name = "find"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/find.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-01-28 14:19:58 +00:00
|
|
|
collections = { path = "../collections" }
|
2022-01-27 16:39:58 +00:00
|
|
|
editor = { path = "../editor" }
|
|
|
|
gpui = { path = "../gpui" }
|
2022-02-25 09:27:45 +00:00
|
|
|
language = { path = "../language" }
|
2022-02-23 11:38:36 +00:00
|
|
|
project = { path = "../project" }
|
2022-01-28 00:16:51 +00:00
|
|
|
theme = { path = "../theme" }
|
2022-01-27 16:39:58 +00:00
|
|
|
workspace = { path = "../workspace" }
|
2022-01-28 15:15:18 +00:00
|
|
|
anyhow = "1.0"
|
2022-01-27 20:58:21 +00:00
|
|
|
postage = { version = "0.4.1", features = ["futures-traits"] }
|
2022-01-28 21:05:29 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|
|
|
|
unindent = "0.1"
|