[package] name = "assistant" version = "0.1.0" edition = "2021" publish = false license = "GPL-3.0-or-later" [lib] path = "src/assistant.rs" doctest = false [dependencies] ai = { path = "../ai" } anyhow.workspace = true chrono.workspace = true client = { path = "../client" } collections = { path = "../collections" } editor = { path = "../editor" } fs = { path = "../fs" } futures.workspace = true gpui = { path = "../gpui" } indoc.workspace = true isahc.workspace = true language = { path = "../language" } log.workspace = true menu = { path = "../menu" } multi_buffer = { path = "../multi_buffer" } ordered-float.workspace = true parking_lot.workspace = true project = { path = "../project" } regex.workspace = true schemars.workspace = true search = { path = "../search" } semantic_index = { path = "../semantic_index" } serde.workspace = true serde_json.workspace = true settings = { path = "../settings" } smol.workspace = true theme = { path = "../theme" } tiktoken-rs.workspace = true ui = { path = "../ui" } util = { path = "../util" } uuid.workspace = true workspace = { path = "../workspace" } [dev-dependencies] ai = { path = "../ai", features = ["test-support"] } ctor.workspace = true editor = { path = "../editor", features = ["test-support"] } env_logger.workspace = true log.workspace = true project = { path = "../project", features = ["test-support"] } rand.workspace = true