zed/crates/search/Cargo.toml

41 lines
1.0 KiB
TOML
Raw Normal View History

[package]
name = "search"
version = "0.1.0"
edition = "2021"
publish = false
[lib]
path = "src/search.rs"
doctest = false
[dependencies]
bitflags = "1"
collections = { path = "../collections" }
editor = { path = "../editor" }
gpui = { path = "../gpui" }
language = { path = "../language" }
menu = { path = "../menu" }
2022-02-23 14:38:36 +03:00
project = { path = "../project" }
settings = { path = "../settings" }
2022-01-28 03:16:51 +03:00
theme = { path = "../theme" }
util = { path = "../util" }
workspace = { path = "../workspace" }
semantic_index = { path = "../semantic_index" }
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
globset.workspace = true
2023-08-02 14:05:29 +03:00
serde_json.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-08-02 14:05:29 +03:00
2022-01-29 00:05:29 +03:00
workspace = { path = "../workspace", features = ["test-support"] }
unindent.workspace = true