zed/crates/search/Cargo.toml

37 lines
977 B
TOML
Raw Normal View History

[package]
name = "search"
version = "0.1.0"
edition = "2021"
publish = false
[lib]
path = "src/search.rs"
doctest = false
[dependencies]
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" }
anyhow = "1.0"
futures = { workspace = true }
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
postage = { workspace = true }
serde = { workspace = true }
serde_derive = { workspace = true }
smallvec = { workspace = true }
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"] }
serde_json = { workspace = true }
2022-01-29 00:05:29 +03:00
workspace = { path = "../workspace", features = ["test-support"] }
unindent = "0.1"