mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-09 00:50:04 +03:00
9f99e58834
Co-authored-by: Mikayla <mikayla@zed.dev>
38 lines
1.2 KiB
TOML
38 lines
1.2 KiB
TOML
[package]
|
|
name = "file_finder"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/file_finder.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
editor = { path = "../editor" }
|
|
collections = { path = "../collections" }
|
|
fuzzy = { path = "../fuzzy" }
|
|
gpui = { package = "gpui2", path = "../gpui2" }
|
|
menu = { package = "menu2", path = "../menu2" }
|
|
picker = { path = "../picker" }
|
|
project = { path = "../project" }
|
|
settings = { package = "settings2", path = "../settings2" }
|
|
text = { package = "text2", path = "../text2" }
|
|
util = { path = "../util" }
|
|
theme = { package = "theme2", path = "../theme2" }
|
|
ui = { package = "ui2", path = "../ui2" }
|
|
workspace = { path = "../workspace" }
|
|
postage.workspace = true
|
|
serde.workspace = true
|
|
|
|
[dev-dependencies]
|
|
editor = { path = "../editor", features = ["test-support"] }
|
|
gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
|
|
language = { path = "../language", features = ["test-support"] }
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|
|
theme = { package = "theme2", path = "../theme2", features = ["test-support"] }
|
|
|
|
serde_json.workspace = true
|
|
ctor.workspace = true
|
|
env_logger.workspace = true
|