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"
|
2023-01-18 20:28:02 +00:00
|
|
|
publish = false
|
2024-01-27 12:51:16 +00:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 16:40:30 +00:00
|
|
|
|
2024-03-05 17:01:17 +00:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
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]
|
2024-01-31 02:41:29 +00:00
|
|
|
anyhow.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
collections.workspace = true
|
|
|
|
editor.workspace = true
|
2024-04-26 19:25:25 +00:00
|
|
|
futures.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
fuzzy.workspace = true
|
|
|
|
gpui.workspace = true
|
|
|
|
menu.workspace = true
|
|
|
|
picker.workspace = true
|
|
|
|
project.workspace = true
|
2024-04-11 21:09:12 +00:00
|
|
|
settings.workspace = true
|
2024-05-22 04:35:00 +00:00
|
|
|
serde.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
text.workspace = true
|
|
|
|
theme.workspace = true
|
|
|
|
ui.workspace = true
|
|
|
|
util.workspace = true
|
|
|
|
workspace.workspace = true
|
2021-10-05 12:30:56 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-01-31 02:41:29 +00:00
|
|
|
ctor.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
editor = { workspace = true, features = ["test-support"] }
|
2024-01-31 02:41:29 +00:00
|
|
|
env_logger.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
|
|
language = { workspace = true, features = ["test-support"] }
|
2024-06-13 00:40:53 +00:00
|
|
|
picker = { workspace = true, features = ["test-support"] }
|
2023-05-11 21:40:35 +00:00
|
|
|
serde_json.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
theme = { workspace = true, features = ["test-support"] }
|
|
|
|
workspace = { workspace = true, features = ["test-support"] }
|