Cargo.toml

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