2023-05-19 21:20:58 +00:00
|
|
|
[package]
|
2023-09-22 01:54:59 +00:00
|
|
|
name = "assistant"
|
2023-05-19 21:20:58 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
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-05-24 17:14:27 +00:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2023-05-19 21:20:58 +00:00
|
|
|
[lib]
|
2023-09-22 01:54:59 +00:00
|
|
|
path = "src/assistant.rs"
|
2023-05-19 21:20:58 +00:00
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-31 02:41:29 +00:00
|
|
|
anyhow.workspace = true
|
2024-05-14 13:57:52 +00:00
|
|
|
anthropic = { workspace = true, features = ["schemars"] }
|
2024-05-24 17:03:41 +00:00
|
|
|
assistant_slash_command.workspace = true
|
2024-05-14 22:39:52 +00:00
|
|
|
cargo_toml.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
chrono.workspace = true
|
2024-03-19 18:22:26 +00:00
|
|
|
client.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
collections.workspace = true
|
2024-03-22 15:55:29 +00:00
|
|
|
command_palette_hooks.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
editor.workspace = true
|
2024-03-29 20:55:01 +00:00
|
|
|
file_icons.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
fs.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
futures.workspace = true
|
2024-05-22 21:06:28 +00:00
|
|
|
fuzzy.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
gpui.workspace = true
|
2024-06-03 13:58:43 +00:00
|
|
|
heed.workspace = true
|
2024-06-04 20:14:26 +00:00
|
|
|
html_to_markdown.workspace = true
|
2024-05-10 21:50:20 +00:00
|
|
|
http.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
indoc.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
language.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
log.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
menu.workspace = true
|
|
|
|
multi_buffer.workspace = true
|
2024-06-12 00:35:27 +00:00
|
|
|
ollama = { workspace = true, features = ["schemars"] }
|
2024-03-19 18:22:26 +00:00
|
|
|
open_ai = { workspace = true, features = ["schemars"] }
|
2023-08-24 10:45:44 +00:00
|
|
|
ordered-float.workspace = true
|
2024-03-19 18:22:26 +00:00
|
|
|
parking_lot.workspace = true
|
2024-06-17 23:27:42 +00:00
|
|
|
paths.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
project.workspace = true
|
2023-06-20 19:29:34 +00:00
|
|
|
regex.workspace = true
|
2024-05-17 22:38:14 +00:00
|
|
|
rope.workspace = true
|
2024-06-12 19:53:05 +00:00
|
|
|
rustdoc.workspace = true
|
2023-06-02 08:55:19 +00:00
|
|
|
schemars.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
search.workspace = true
|
2024-05-28 14:06:09 +00:00
|
|
|
semantic_index.workspace = true
|
2023-05-29 14:23:16 +00:00
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
settings.workspace = true
|
2024-06-11 10:39:45 +00:00
|
|
|
similar.workspace = true
|
2023-06-20 09:59:51 +00:00
|
|
|
smol.workspace = true
|
2024-05-20 15:02:15 +00:00
|
|
|
strsim = "0.11"
|
2024-05-30 10:36:07 +00:00
|
|
|
strum.workspace = true
|
2024-02-23 16:13:28 +00:00
|
|
|
telemetry_events.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
theme.workspace = true
|
2023-11-14 13:28:57 +00:00
|
|
|
tiktoken-rs.workspace = true
|
2024-05-14 22:39:52 +00:00
|
|
|
toml.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
ui.workspace = true
|
|
|
|
util.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
uuid.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
workspace.workspace = true
|
2024-05-22 22:04:47 +00:00
|
|
|
picker.workspace = true
|
2023-05-19 21:20:58 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-08-23 07:09:01 +00:00
|
|
|
ctor.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
editor = { workspace = true, features = ["test-support"] }
|
2023-08-23 07:09:01 +00:00
|
|
|
env_logger.workspace = true
|
|
|
|
log.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
project = { workspace = true, features = ["test-support"] }
|
2023-08-23 07:09:01 +00:00
|
|
|
rand.workspace = true
|
2024-05-17 22:38:14 +00:00
|
|
|
unindent.workspace = true
|