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"
|
2023-01-18 23:28:02 +03:00
|
|
|
publish = false
|
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]
|
2024-01-03 21:58:57 +03:00
|
|
|
editor = { path = "../editor" }
|
2023-09-28 01:23:17 +03:00
|
|
|
collections = { path = "../collections" }
|
2024-01-03 22:58:02 +03:00
|
|
|
fuzzy = { path = "../fuzzy" }
|
2024-01-03 21:42:49 +03:00
|
|
|
gpui = { package = "gpui2", path = "../gpui2" }
|
|
|
|
menu = { package = "menu2", path = "../menu2" }
|
2024-01-03 21:55:34 +03:00
|
|
|
picker = { path = "../picker" }
|
2024-01-03 22:53:24 +03:00
|
|
|
project = { path = "../project" }
|
2024-01-03 21:42:49 +03:00
|
|
|
settings = { package = "settings2", path = "../settings2" }
|
|
|
|
text = { package = "text2", path = "../text2" }
|
2021-10-05 15:30:56 +03:00
|
|
|
util = { path = "../util" }
|
2024-01-03 21:42:49 +03:00
|
|
|
theme = { package = "theme2", path = "../theme2" }
|
|
|
|
ui = { package = "ui2", path = "../ui2" }
|
2024-01-03 22:08:51 +03:00
|
|
|
workspace = { path = "../workspace" }
|
2023-04-25 03:41:55 +03:00
|
|
|
postage.workspace = true
|
2024-01-03 21:42:49 +03:00
|
|
|
serde.workspace = true
|
2021-10-05 15:30:56 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-01-03 21:58:57 +03:00
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|
2024-01-03 21:42:49 +03:00
|
|
|
gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
|
2024-01-03 22:58:02 +03:00
|
|
|
language = { path = "../language", features = ["test-support"] }
|
2024-01-03 22:08:51 +03:00
|
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|
2024-01-03 21:42:49 +03:00
|
|
|
theme = { package = "theme2", path = "../theme2", features = ["test-support"] }
|
2023-05-12 00:40:35 +03:00
|
|
|
|
|
|
|
serde_json.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
ctor.workspace = true
|
|
|
|
env_logger.workspace = true
|