2022-01-27 16:39:58 +00:00
|
|
|
[package]
|
2022-02-27 15:15:38 +00:00
|
|
|
name = "search"
|
2022-01-27 16:39:58 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[lib]
|
2022-02-27 15:15:38 +00:00
|
|
|
path = "src/search.rs"
|
2022-03-04 00:15:56 +00:00
|
|
|
doctest = false
|
2022-01-27 16:39:58 +00:00
|
|
|
|
|
|
|
[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-04-06 00:10:17 +00:00
|
|
|
settings = { path = "../settings" }
|
2022-01-28 00:16:51 +00:00
|
|
|
theme = { path = "../theme" }
|
2022-02-25 22:09:47 +00:00
|
|
|
util = { path = "../util" }
|
2022-01-27 16:39:58 +00:00
|
|
|
workspace = { path = "../workspace" }
|
2022-01-28 15:15:18 +00:00
|
|
|
anyhow = "1.0"
|
2022-04-08 16:06:51 +00:00
|
|
|
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
|
2022-01-27 20:58:21 +00:00
|
|
|
postage = { version = "0.4.1", features = ["futures-traits"] }
|
2022-04-08 22:32:56 +00:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2022-01-28 21:05:29 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2022-02-28 10:10:22 +00:00
|
|
|
serde_json = { version = "1.0.64", features = ["preserve_order"] }
|
2022-01-28 21:05:29 +00:00
|
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|
|
|
|
unindent = "0.1"
|