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-01-28 00:16:51 +00:00
|
|
|
theme = { path = "../theme" }
|
2022-01-27 16:39:58 +00:00
|
|
|
workspace = { path = "../workspace" }
|
2022-01-28 14:19:58 +00:00
|
|
|
aho-corasick = "0.7"
|
2022-01-27 20:58:21 +00:00
|
|
|
postage = { version = "0.4.1", features = ["futures-traits"] }
|
2022-01-28 11:15:55 +00:00
|
|
|
smol = { version = "1.2" }
|