2023-09-22 05:44:56 +03:00
|
|
|
[package]
|
|
|
|
name = "ai"
|
|
|
|
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-09-22 05:44:56 +03:00
|
|
|
[lib]
|
|
|
|
path = "src/ai.rs"
|
|
|
|
doctest = false
|
|
|
|
|
2023-10-26 12:18:16 +03:00
|
|
|
[features]
|
|
|
|
test-support = []
|
|
|
|
|
2023-09-22 05:44:56 +03:00
|
|
|
[dependencies]
|
|
|
|
anyhow.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
async-trait.workspace = true
|
|
|
|
bincode = "1.3.3"
|
2023-09-22 05:44:56 +03:00
|
|
|
futures.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
gpui.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
isahc.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
language.workspace = true
|
2023-09-22 16:33:59 +03:00
|
|
|
lazy_static.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
log.workspace = true
|
|
|
|
matrixmultiply = "0.3.7"
|
2023-09-22 16:33:59 +03:00
|
|
|
ordered-float.workspace = true
|
|
|
|
parking_lot.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
parse_duration = "2.1.1"
|
|
|
|
postage.workspace = true
|
|
|
|
rand.workspace = true
|
2023-09-22 05:44:56 +03:00
|
|
|
regex.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
rusqlite = { version = "0.29.0", features = ["blob", "array", "modern_sqlite"] }
|
2023-09-22 05:44:56 +03:00
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
2023-11-14 16:28:57 +03:00
|
|
|
tiktoken-rs.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
util.workspace = true
|
2023-09-22 05:44:56 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-06 22:41:36 +03:00
|
|
|
gpui = { workspace = true, features = ["test-support"] }
|