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 23:59:39 +03:00
|
|
|
gpui = { path = "../gpui" }
|
2024-01-03 23:28:45 +03:00
|
|
|
menu = { path = "../menu" }
|
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 23:28:45 +03:00
|
|
|
settings = { path = "../settings" }
|
2024-01-03 23:33:51 +03:00
|
|
|
text = { path = "../text" }
|
2021-10-05 15:30:56 +03:00
|
|
|
util = { path = "../util" }
|
2024-01-03 23:41:01 +03:00
|
|
|
theme = { path = "../theme" }
|
2024-01-03 23:33:51 +03:00
|
|
|
ui = { path = "../ui" }
|
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 23:59:39 +03:00
|
|
|
gpui = { path = "../gpui", 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 23:41:01 +03:00
|
|
|
theme = { path = "../theme", 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
|