-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
83 lines (74 loc) · 2.23 KB
/
Copy pathCargo.toml
File metadata and controls
83 lines (74 loc) · 2.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[package]
name = "doora"
version = "0.1.2"
edition = "2021"
description = "Doora parses source files into syntax trees and runs S-expression queries to find functions, types, and call sites that grep misses. Supports Rust, Python, JS, TS, Go, C, and C++. Exposes an MCP server so AI agents understand your codebase semantically, cutting hallucinations and wasted context tokens."
authors = ["backpack-lab"]
license = "MIT"
repository = "https://github.com/backpack-lab/doora"
homepage = "https://github.com/backpack-lab/doora"
keywords = ["rust", "cli", "tree-sitter", "mcp", "ast", "code-search", "developer-tools", "query-engine", "rayon", "llm", "ai-coding", "grep-alternative", "structural-search"]
categories = ["command-line-utilities", "development-tools"]
readme = "README.md"
exclude = [
"tests/fixtures/",
"benches/",
"scripts/",
"docs/",
".github/",
]
[profile.release]
debug = 1
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
[[bin]]
name = "doora"
path = "src/main.rs"
[dependencies]
tree-sitter = "0.22"
tree-sitter-rust = "0.21"
tree-sitter-python = "0.21"
tree-sitter-javascript = "0.21"
tree-sitter-typescript = "0.21"
tree-sitter-go = "0.21"
tree-sitter-c = "0.21"
tree-sitter-cpp = "0.21"
rayon = "1.10"
ignore = "0.4"
clap = { version = "4", features = ["derive"] }
clap_complete = "4"
thiserror = "1"
regex = "1"
memmap2 = "0.9"
bincode = { version = "2", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
rusqlite = { version = "0.31", features = ["bundled"] }
serde_json = "1"
ratatui = "0.27"
crossterm = { version = "0.27", features = ["event-stream"] }
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
tokio-util = { version = "0.7", features = ["rt"] }
scopeguard = "1"
similar = "2"
[dev-dependencies]
tempfile = "3"
criterion = { version = "0.5", features = ["html_reports"] }
[[bench]]
name = "search_benchmarks"
harness = false
[workspace.metadata.dist]
cargo-dist-version = "0.22.0"
ci = ["github"]
installers = ["shell", "powershell"]
targets = [
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-gnu",
"x86_64-apple-darwin",
"aarch64-apple-darwin",
"x86_64-pc-windows-msvc",
]
install-path = "CARGO_HOME"
publish-jobs = ["cargo"]