mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-24 19:10:24 +00:00
417760ade7
This PR extracts the `ContextEditor` to the `assistant_context_editor` crate. As part of this, we have decoupled the `ContextEditor` from the `AssistantPanel`. There is now an `AssistantPanelDelegate` that the `ContextEditor` uses when it needs to interface with the Assistant panel. Release Notes: - N/A
68 lines
1.7 KiB
TOML
68 lines
1.7 KiB
TOML
[package]
|
|
name = "assistant_context_editor"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/assistant_context_editor.rs"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
assistant_settings.workspace = true
|
|
assistant_slash_command.workspace = true
|
|
assistant_slash_commands.workspace = true
|
|
assistant_tool.workspace = true
|
|
chrono.workspace = true
|
|
client.workspace = true
|
|
clock.workspace = true
|
|
collections.workspace = true
|
|
context_server.workspace = true
|
|
editor.workspace = true
|
|
feature_flags.workspace = true
|
|
fs.workspace = true
|
|
futures.workspace = true
|
|
fuzzy.workspace = true
|
|
gpui.workspace = true
|
|
indexed_docs.workspace = true
|
|
language.workspace = true
|
|
language_model.workspace = true
|
|
language_model_selector.workspace = true
|
|
language_models.workspace = true
|
|
log.workspace = true
|
|
multi_buffer.workspace = true
|
|
open_ai.workspace = true
|
|
parking_lot.workspace = true
|
|
paths.workspace = true
|
|
picker.workspace = true
|
|
project.workspace = true
|
|
prompt_library.workspace = true
|
|
regex.workspace = true
|
|
rope.workspace = true
|
|
rpc.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
settings.workspace = true
|
|
smallvec.workspace = true
|
|
smol.workspace = true
|
|
strum.workspace = true
|
|
telemetry_events.workspace = true
|
|
text.workspace = true
|
|
theme.workspace = true
|
|
ui.workspace = true
|
|
util.workspace = true
|
|
uuid.workspace = true
|
|
workspace.workspace = true
|
|
|
|
[dev-dependencies]
|
|
language_model = { workspace = true, features = ["test-support"] }
|
|
languages = { workspace = true, features = ["test-support"] }
|
|
pretty_assertions.workspace = true
|
|
rand.workspace = true
|
|
tree-sitter-md.workspace = true
|
|
unindent.workspace = true
|
|
workspace = { workspace = true, features = ["test-support"] }
|