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"
|
2023-01-18 20:28:02 +00:00
|
|
|
publish = false
|
2024-01-27 12:51:16 +00:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 16:40:30 +00:00
|
|
|
|
2022-01-27 16:39:58 +00:00
|
|
|
[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]
|
2023-06-28 03:46:08 +00:00
|
|
|
bitflags = "1"
|
2022-01-28 14:19:58 +00:00
|
|
|
collections = { path = "../collections" }
|
2024-01-03 18:58:57 +00:00
|
|
|
editor = { path = "../editor" }
|
2024-01-03 20:59:39 +00:00
|
|
|
gpui = { path = "../gpui" }
|
2024-01-03 19:58:02 +00:00
|
|
|
language = { path = "../language" }
|
2024-01-03 20:28:45 +00:00
|
|
|
menu = { path = "../menu" }
|
2024-01-03 19:53:24 +00:00
|
|
|
project = { path = "../project" }
|
2024-01-03 20:28:45 +00:00
|
|
|
settings = { path = "../settings" }
|
2024-01-03 20:41:01 +00:00
|
|
|
theme = { path = "../theme" }
|
2022-02-25 22:09:47 +00:00
|
|
|
util = { path = "../util" }
|
2024-01-03 20:33:51 +00:00
|
|
|
ui = {path = "../ui"}
|
2024-01-03 19:08:51 +00:00
|
|
|
workspace = { path = "../workspace" }
|
2024-01-03 20:09:08 +00:00
|
|
|
semantic_index = { path = "../semantic_index" }
|
2023-04-25 00:41:55 +00:00
|
|
|
anyhow.workspace = true
|
|
|
|
futures.workspace = true
|
|
|
|
log.workspace = true
|
|
|
|
postage.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
|
|
|
smallvec.workspace = true
|
|
|
|
smol.workspace = true
|
2023-08-02 11:05:29 +00:00
|
|
|
serde_json.workspace = true
|
2022-01-28 21:05:29 +00:00
|
|
|
[dev-dependencies]
|
2024-01-03 20:02:14 +00:00
|
|
|
client = { path = "../client", features = ["test-support"] }
|
2024-01-03 18:58:57 +00:00
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|
2024-01-03 20:59:39 +00:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2023-08-02 11:05:29 +00:00
|
|
|
|
2024-01-03 19:08:51 +00:00
|
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|
2023-04-25 00:41:55 +00:00
|
|
|
unindent.workspace = true
|