2022-01-27 19:39:58 +03:00
|
|
|
[package]
|
2022-02-27 18:15:38 +03:00
|
|
|
name = "search"
|
2022-01-27 19:39:58 +03:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-01-18 23:28:02 +03:00
|
|
|
publish = false
|
2022-01-27 19:39:58 +03:00
|
|
|
|
|
|
|
[lib]
|
2022-02-27 18:15:38 +03:00
|
|
|
path = "src/search.rs"
|
2022-03-04 03:15:56 +03:00
|
|
|
doctest = false
|
2022-01-27 19:39:58 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2022-01-28 17:19:58 +03:00
|
|
|
collections = { path = "../collections" }
|
2022-01-27 19:39:58 +03:00
|
|
|
editor = { path = "../editor" }
|
|
|
|
gpui = { path = "../gpui" }
|
2022-02-25 12:27:45 +03:00
|
|
|
language = { path = "../language" }
|
2022-05-26 17:36:30 +03:00
|
|
|
menu = { path = "../menu" }
|
2022-02-23 14:38:36 +03:00
|
|
|
project = { path = "../project" }
|
2022-04-06 03:10:17 +03:00
|
|
|
settings = { path = "../settings" }
|
2022-01-28 03:16:51 +03:00
|
|
|
theme = { path = "../theme" }
|
2022-02-26 01:09:47 +03:00
|
|
|
util = { path = "../util" }
|
2022-01-27 19:39:58 +03:00
|
|
|
workspace = { path = "../workspace" }
|
2022-01-28 18:15:18 +03:00
|
|
|
anyhow = "1.0"
|
2023-01-19 17:42:14 +03:00
|
|
|
futures = "0.3"
|
2022-04-08 19:06:51 +03:00
|
|
|
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
|
2023-03-21 03:17:09 +03:00
|
|
|
postage = { workspace = true }
|
2023-03-23 12:29:25 +03:00
|
|
|
serde = { workspace = true }
|
|
|
|
serde_derive = { workspace = true }
|
2022-05-23 02:48:33 +03:00
|
|
|
smallvec = { version = "1.6", features = ["union"] }
|
2023-01-18 16:22:23 +03:00
|
|
|
smol = "1.2"
|
2022-01-29 00:05:29 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2023-03-23 12:29:25 +03:00
|
|
|
serde_json = { workspace = true }
|
2022-01-29 00:05:29 +03:00
|
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|
|
|
|
unindent = "0.1"
|