2022-04-13 23:20:59 +03:00
|
|
|
[package]
|
|
|
|
name = "command_palette"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-01-18 23:28:02 +03:00
|
|
|
publish = false
|
2024-01-27 15:51:16 +03:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 19:40:30 +03:00
|
|
|
|
2024-03-05 20:01:17 +03:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2022-04-13 23:20:59 +03:00
|
|
|
[lib]
|
|
|
|
path = "src/command_palette.rs"
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2024-02-06 22:41:36 +03:00
|
|
|
client.workspace = true
|
|
|
|
collections.workspace = true
|
2024-02-25 21:21:20 +03:00
|
|
|
command_palette_hooks.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
fuzzy.workspace = true
|
|
|
|
gpui.workspace = true
|
|
|
|
picker.workspace = true
|
2024-02-25 21:21:20 +03:00
|
|
|
postage.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
project.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
serde.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
settings.workspace = true
|
|
|
|
theme.workspace = true
|
|
|
|
ui.workspace = true
|
|
|
|
util.workspace = true
|
|
|
|
workspace.workspace = true
|
|
|
|
zed_actions.workspace = true
|
2022-04-13 23:20:59 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-01-31 05:41:29 +03:00
|
|
|
ctor.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
editor = { workspace = true, features = ["test-support"] }
|
2024-01-31 05:41:29 +03:00
|
|
|
env_logger.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
go_to_line.workspace = true
|
|
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
|
|
language = { workspace = true, features = ["test-support"] }
|
|
|
|
menu.workspace = true
|
|
|
|
project = { workspace = true, features = ["test-support"] }
|
2023-04-25 03:41:55 +03:00
|
|
|
serde_json.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
workspace = { workspace = true, features = ["test-support"] }
|