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" }
19picker = { path = "../picker" }
20theme = { path = "../theme" }
21editor = { path = "../editor" }
22rpc = { path = "../rpc" }
23settings = { path = "../settings" }
24anyhow.workspace = true
25postage.workspace = true
26futures.workspace = true
27ordered-float.workspace = true
28smol.workspace = true
29rusqlite.workspace = true
30log.workspace = true
31tree-sitter.workspace = true
32lazy_static.workspace = true
33serde.workspace = true
34serde_json.workspace = true
35async-trait.workspace = true
36tiktoken-rs = "0.5.0"
37parking_lot.workspace = true
38rand.workspace = true
39schemars.workspace = true
40globset.workspace = true
41sha1 = "0.10.5"
42ndarray = { version = "0.15.0" }
43
44[dev-dependencies]
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 = { version = "8.0", features = ["include-exclude"] }
53client = { path = "../client" }
54zed = { path = "../zed"}
55node_runtime = { path = "../node_runtime"}
56
57pretty_assertions.workspace = true
58rand.workspace = true
59unindent.workspace = true
60tempdir.workspace = true
61ctor.workspace = true
62env_logger.workspace = true
63
64tree-sitter-typescript.workspace = true
65tree-sitter-json.workspace = true
66tree-sitter-rust.workspace = true
67tree-sitter-toml.workspace = true
68tree-sitter-cpp.workspace = true
69tree-sitter-elixir.workspace = true
70tree-sitter-lua.workspace = true
71tree-sitter-ruby.workspace = true
72tree-sitter-php.workspace = true
73
74[[example]]
75name = "eval"