1[package]
2name = "semantic_index"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[lib]
8path = "src/semantic_index.rs"
9doctest = false
10
11[dependencies]
12ai = { path = "../ai" }
13collections = { path = "../collections" }
14gpui = { path = "../gpui" }
15language = { path = "../language" }
16project = { path = "../project" }
17workspace = { path = "../workspace" }
18util = { path = "../util" }
19rpc = { path = "../rpc" }
20settings = { path = "../settings" }
21anyhow.workspace = true
22postage.workspace = true
23futures.workspace = true
24ordered-float.workspace = true
25smol.workspace = true
26rusqlite.workspace = true
27log.workspace = true
28tree-sitter.workspace = true
29lazy_static.workspace = true
30serde.workspace = true
31serde_json.workspace = true
32async-trait.workspace = true
33tiktoken-rs.workspace = true
34parking_lot.workspace = true
35rand.workspace = true
36schemars.workspace = true
37globset.workspace = true
38sha1 = "0.10.5"
39ndarray = { version = "0.15.0" }
40
41[dev-dependencies]
42ai = { path = "../ai", features = ["test-support"] }
43collections = { path = "../collections", features = ["test-support"] }
44gpui = { path = "../gpui", features = ["test-support"] }
45language = { path = "../language", features = ["test-support"] }
46project = { path = "../project", features = ["test-support"] }
47rpc = { path = "../rpc", features = ["test-support"] }
48workspace = { path = "../workspace", features = ["test-support"] }
49settings = { path = "../settings", features = ["test-support"]}
50rust-embed = { version = "8.0", features = ["include-exclude"] }
51client = { path = "../client" }
52node_runtime = { path = "../node_runtime"}
53
54pretty_assertions.workspace = true
55rand.workspace = true
56unindent.workspace = true
57tempdir.workspace = true
58ctor.workspace = true
59env_logger.workspace = true
60
61tree-sitter-typescript.workspace = true
62tree-sitter-json.workspace = true
63tree-sitter-rust.workspace = true
64tree-sitter-toml.workspace = true
65tree-sitter-cpp.workspace = true
66tree-sitter-elixir.workspace = true
67tree-sitter-lua.workspace = true
68tree-sitter-ruby.workspace = true
69tree-sitter-php.workspace = true