mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-05 23:51:08 +00:00
455850505f
Fixes: - [x] an issue where directories would only match by prefix, causing both a directory and a file to be matched if in the same directory - [x] An issue where you could not continue a file completion when selecting a directory, as `tab` on a file would always run the command. This effectively disabled directory sub queries. - [x] Inconsistent rendering of files and directories in the slash command Release Notes: - N/A --------- Co-authored-by: max <max@zed.dev>
98 lines
2.5 KiB
TOML
98 lines
2.5 KiB
TOML
[package]
|
|
name = "assistant"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/assistant.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
test-support = [
|
|
"editor/test-support",
|
|
"language/test-support",
|
|
"project/test-support",
|
|
"text/test-support",
|
|
]
|
|
|
|
[dependencies]
|
|
anthropic = { workspace = true, features = ["schemars"] }
|
|
anyhow.workspace = true
|
|
assets.workspace = true
|
|
assistant_slash_command.workspace = true
|
|
async-watch.workspace = true
|
|
cargo_toml.workspace = true
|
|
chrono.workspace = true
|
|
client.workspace = true
|
|
clock.workspace = true
|
|
collections.workspace = true
|
|
command_palette_hooks.workspace = true
|
|
db.workspace = true
|
|
context_servers.workspace = true
|
|
editor.workspace = true
|
|
feature_flags.workspace = true
|
|
fs.workspace = true
|
|
futures.workspace = true
|
|
fuzzy.workspace = true
|
|
globset.workspace = true
|
|
gpui.workspace = true
|
|
handlebars.workspace = true
|
|
heed.workspace = true
|
|
html_to_markdown.workspace = true
|
|
http_client.workspace = true
|
|
indexed_docs.workspace = true
|
|
indoc.workspace = true
|
|
language.workspace = true
|
|
language_model.workspace = true
|
|
log.workspace = true
|
|
markdown.workspace = true
|
|
menu.workspace = true
|
|
multi_buffer.workspace = true
|
|
ollama = { workspace = true, features = ["schemars"] }
|
|
open_ai = { workspace = true, features = ["schemars"] }
|
|
ordered-float.workspace = true
|
|
parking_lot.workspace = true
|
|
paths.workspace = true
|
|
project.workspace = true
|
|
proto.workspace = true
|
|
regex.workspace = true
|
|
rope.workspace = true
|
|
schemars.workspace = true
|
|
search.workspace = true
|
|
semantic_index.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
settings.workspace = true
|
|
smallvec.workspace = true
|
|
similar.workspace = true
|
|
smol.workspace = true
|
|
telemetry_events.workspace = true
|
|
terminal.workspace = true
|
|
terminal_view.workspace = true
|
|
text.workspace = true
|
|
theme.workspace = true
|
|
toml.workspace = true
|
|
ui.workspace = true
|
|
util.workspace = true
|
|
uuid.workspace = true
|
|
workspace.workspace = true
|
|
picker.workspace = true
|
|
zed_actions.workspace = true
|
|
|
|
[dev-dependencies]
|
|
ctor.workspace = true
|
|
editor = { workspace = true, features = ["test-support"] }
|
|
env_logger.workspace = true
|
|
language = { workspace = true, features = ["test-support"] }
|
|
language_model = { workspace = true, features = ["test-support"] }
|
|
log.workspace = true
|
|
project = { workspace = true, features = ["test-support"] }
|
|
rand.workspace = true
|
|
serde_json_lenient.workspace = true
|
|
text = { workspace = true, features = ["test-support"] }
|
|
unindent.workspace = true
|