zed/crates/find/Cargo.toml

25 lines
643 B
TOML
Raw Normal View History

[package]
name = "find"
version = "0.1.0"
edition = "2021"
[lib]
path = "src/find.rs"
[dependencies]
collections = { path = "../collections" }
editor = { path = "../editor" }
gpui = { path = "../gpui" }
language = { path = "../language" }
2022-02-23 11:38:36 +00:00
project = { path = "../project" }
2022-01-28 00:16:51 +00:00
theme = { path = "../theme" }
workspace = { path = "../workspace" }
anyhow = "1.0"
postage = { version = "0.4.1", features = ["futures-traits"] }
2022-01-28 21:05:29 +00:00
[dev-dependencies]
editor = { path = "../editor", features = ["test-support"] }
gpui = { path = "../gpui", features = ["test-support"] }
workspace = { path = "../workspace", features = ["test-support"] }
unindent = "0.1"