zed/crates/search/Cargo.toml

29 lines
770 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 14:38:36 +03:00
project = { path = "../project" }
2022-01-28 03:16:51 +03:00
theme = { path = "../theme" }
util = { path = "../util" }
workspace = { path = "../workspace" }
anyhow = "1.0"
2022-02-27 19:25:40 +03:00
log = "0.4"
postage = { version = "0.4.1", features = ["futures-traits"] }
2022-01-29 00:05:29 +03:00
[dev-dependencies]
editor = { path = "../editor", features = ["test-support"] }
gpui = { path = "../gpui", features = ["test-support"] }
2022-02-28 13:10:22 +03:00
serde_json = { version = "1.0.64", features = ["preserve_order"] }
2022-01-29 00:05:29 +03:00
workspace = { path = "../workspace", features = ["test-support"] }
unindent = "0.1"