2021-10-05 15:30:56 +03:00
|
|
|
[package]
|
|
|
|
name = "file_finder"
|
|
|
|
version = "0.1.0"
|
2022-01-26 23:50:31 +03:00
|
|
|
edition = "2021"
|
2021-10-05 15:30:56 +03:00
|
|
|
|
2021-11-30 22:46:39 +03:00
|
|
|
[lib]
|
|
|
|
path = "src/file_finder.rs"
|
2022-03-04 03:15:56 +03:00
|
|
|
doctest = false
|
2021-11-30 22:46:39 +03:00
|
|
|
|
2021-10-05 15:30:56 +03:00
|
|
|
[dependencies]
|
|
|
|
editor = { path = "../editor" }
|
|
|
|
fuzzy = { path = "../fuzzy" }
|
|
|
|
gpui = { path = "../gpui" }
|
|
|
|
project = { path = "../project" }
|
|
|
|
util = { path = "../util" }
|
|
|
|
theme = { path = "../theme" }
|
|
|
|
workspace = { path = "../workspace" }
|
|
|
|
postage = { version = "0.4.1", features = ["futures-traits"] }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-11-24 19:07:16 +03:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2021-10-05 15:30:56 +03:00
|
|
|
serde_json = { version = "1.0.64", features = ["preserve_order"] }
|
|
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|
2022-03-17 17:54:34 +03:00
|
|
|
ctor = "0.1"
|
|
|
|
env_logger = "0.8"
|