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" }
|
2023-04-25 03:41:55 +03: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-05-19 19:13:31 +03:00
|
|
|
globset.workspace = true
|
2022-01-29 00:05:29 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-05-17 19:55:24 +03:00
|
|
|
client = { path = "../client", features = ["test-support"] }
|
2022-01-29 00:05:29 +03:00
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2023-04-25 03:41:55 +03:00
|
|
|
serde_json.workspace = true
|
2022-01-29 00:05:29 +03:00
|
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|
2023-04-25 03:41:55 +03:00
|
|
|
unindent.workspace = true
|