zed/crates/search/Cargo.toml

33 lines
992 B
TOML
Raw Normal View History

[package]
name = "search"
version = "0.1.0"
edition = "2021"
[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"
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
postage = { version = "0.4.1", features = ["futures-traits"] }
serde = { version = "1.0", features = ["derive", "rc"] }
smallvec = { version = "1.6", features = ["union"] }
2022-01-29 00:05:29 +03:00
[dev-dependencies]
editor = { path = "../editor", features = ["test-support"] }
gpui = { path = "../gpui", features = ["test-support"] }
2022-05-26 10:34:39 +03:00
serde_json = { version = "1.0", features = ["preserve_order"] }
2022-01-29 00:05:29 +03:00
workspace = { path = "../workspace", features = ["test-support"] }
unindent = "0.1"