2023-05-20 00:20:58 +03:00
|
|
|
[package]
|
2023-09-22 04:54:59 +03:00
|
|
|
name = "assistant"
|
2023-05-20 00:20:58 +03:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
2024-01-27 15:51:16 +03:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 19:40:30 +03:00
|
|
|
|
2023-05-20 00:20:58 +03:00
|
|
|
[lib]
|
2023-09-22 04:54:59 +03:00
|
|
|
path = "src/assistant.rs"
|
2023-05-20 00:20:58 +03:00
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2024-02-06 22:41:36 +03:00
|
|
|
ai.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
anyhow.workspace = true
|
|
|
|
chrono.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
client.workspace = true
|
|
|
|
collections.workspace = true
|
|
|
|
editor.workspace = true
|
|
|
|
fs.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
futures.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
gpui.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
indoc.workspace = true
|
|
|
|
isahc.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
language.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
log.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
menu.workspace = true
|
|
|
|
multi_buffer.workspace = true
|
2023-08-24 13:45:44 +03:00
|
|
|
ordered-float.workspace = true
|
2023-09-11 15:35:15 +03:00
|
|
|
parking_lot.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
project.workspace = true
|
2023-06-20 22:29:34 +03:00
|
|
|
regex.workspace = true
|
2023-06-02 11:55:19 +03:00
|
|
|
schemars.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
search.workspace = true
|
|
|
|
semantic_index.workspace = true
|
2023-05-29 17:23:16 +03:00
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
settings.workspace = true
|
2023-06-20 12:59:51 +03:00
|
|
|
smol.workspace = true
|
2024-02-23 19:13:28 +03:00
|
|
|
telemetry_events.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
theme.workspace = true
|
2023-11-14 16:28:57 +03:00
|
|
|
tiktoken-rs.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
ui.workspace = true
|
|
|
|
util.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
uuid.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
workspace.workspace = true
|
2023-05-20 00:20:58 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-06 22:41:36 +03:00
|
|
|
ai = { workspace = true, features = ["test-support"] }
|
2023-08-23 10:09:01 +03:00
|
|
|
ctor.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
editor = { workspace = true, features = ["test-support"] }
|
2023-08-23 10:09:01 +03:00
|
|
|
env_logger.workspace = true
|
|
|
|
log.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
project = { workspace = true, features = ["test-support"] }
|
2023-08-23 10:09:01 +03:00
|
|
|
rand.workspace = true
|