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-03-05 17:01:17 +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-02-06 19:41:36 +00:00
|
|
|
ai.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
anyhow.workspace = true
|
|
|
|
chrono.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
collections.workspace = true
|
|
|
|
editor.workspace = true
|
|
|
|
fs.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
futures.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
gpui.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
|
2023-08-24 10:45:44 +00:00
|
|
|
ordered-float.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
project.workspace = true
|
2023-06-20 19:29:34 +00:00
|
|
|
regex.workspace = true
|
2023-06-02 08:55:19 +00:00
|
|
|
schemars.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
search.workspace = true
|
|
|
|
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
|
2023-06-20 09:59:51 +00:00
|
|
|
smol.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-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
|
2023-05-19 21:20:58 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-06 19:41:36 +00:00
|
|
|
ai = { workspace = true, features = ["test-support"] }
|
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
|