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