[package] name = "semantic_index" version = "0.1.0" edition = "2021" publish = false [lib] path = "src/semantic_index.rs" doctest = false [dependencies] ai = { path = "../ai" } collections = { path = "../collections" } gpui = { path = "../gpui" } language = { path = "../language" } project = { path = "../project" } workspace = { path = "../workspace" } util = { path = "../util" } picker = { path = "../picker" } theme = { path = "../theme" } editor = { path = "../editor" } rpc = { path = "../rpc" } settings = { path = "../settings" } anyhow.workspace = true postage.workspace = true futures.workspace = true ordered-float.workspace = true smol.workspace = true rusqlite = { version = "0.27.0", features = ["blob", "array", "modern_sqlite"] } log.workspace = true tree-sitter.workspace = true lazy_static.workspace = true serde.workspace = true serde_json.workspace = true async-trait.workspace = true tiktoken-rs = "0.5.0" parking_lot.workspace = true rand.workspace = true schemars.workspace = true globset.workspace = true sha1 = "0.10.5" ndarray = { version = "0.15.0", features = ["blas"] } blas-src = { version = "0.8", features = ["openblas"] } openblas-src = { version = "0.10", features = ["cblas", "system"] } [dev-dependencies] collections = { path = "../collections", features = ["test-support"] } gpui = { path = "../gpui", features = ["test-support"] } language = { path = "../language", features = ["test-support"] } project = { path = "../project", features = ["test-support"] } rpc = { path = "../rpc", features = ["test-support"] } workspace = { path = "../workspace", features = ["test-support"] } settings = { path = "../settings", features = ["test-support"]} rust-embed = { version = "8.0", features = ["include-exclude"] } client = { path = "../client" } zed = { path = "../zed"} node_runtime = { path = "../node_runtime"} pretty_assertions.workspace = true rand.workspace = true unindent.workspace = true tempdir.workspace = true ctor.workspace = true env_logger.workspace = true tree-sitter-typescript.workspace = true tree-sitter-json.workspace = true tree-sitter-rust.workspace = true tree-sitter-toml.workspace = true tree-sitter-cpp.workspace = true tree-sitter-elixir.workspace = true tree-sitter-lua.workspace = true tree-sitter-ruby.workspace = true tree-sitter-php.workspace = true [[example]] name = "eval"