zed/crates/search/Cargo.toml

32 lines
956 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" }
2022-02-23 11:38:36 +00:00
project = { path = "../project" }
settings = { path = "../settings" }
2022-01-28 00:16:51 +00: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", features = ["derive"] }
smallvec = { version = "1.6", features = ["union"] }
2022-01-28 21:05:29 +00:00
[dev-dependencies]
editor = { path = "../editor", features = ["test-support"] }
gpui = { path = "../gpui", features = ["test-support"] }
2022-05-26 07:34:39 +00:00
serde_json = { version = "1.0", features = ["preserve_order"] }
2022-01-28 21:05:29 +00:00
workspace = { path = "../workspace", features = ["test-support"] }
unindent = "0.1"