[package]
edition = "2024"
name = "reference-query"
version = "0.39.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reference Query — find the code you're looking for."
readme = "README.md"
license = "MIT"
repository = "https://github.com/dpep/rq"
[lib]
name = "reference_query"
path = "src/lib.rs"
[[bin]]
name = "rq"
path = "src/main.rs"
[[example]]
name = "bench"
path = "examples/bench.rs"
[[test]]
name = "budgeted_index"
path = "tests/budgeted_index.rs"
[[test]]
name = "candidate_recall"
path = "tests/candidate_recall.rs"
[[test]]
name = "cli_e2e"
path = "tests/cli_e2e.rs"
[[test]]
name = "index_integration"
path = "tests/index_integration.rs"
[[test]]
name = "lang_fixtures"
path = "tests/lang_fixtures.rs"
[[test]]
name = "learning"
path = "tests/learning.rs"
[[test]]
name = "live_search"
path = "tests/live_search.rs"
[[test]]
name = "ranking_aspirations"
path = "tests/ranking_aspirations.rs"
[[test]]
name = "ranking_dogfood"
path = "tests/ranking_dogfood.rs"
[[test]]
name = "rust_fixture"
path = "tests/rust_fixture.rs"
[[test]]
name = "staleness"
path = "tests/staleness.rs"
[[test]]
name = "warm_progress"
path = "tests/warm_progress.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.clap_complete]
version = "4"
[dependencies.ignore]
version = "0.4"
[dependencies.libc]
version = "0.2"
[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tree-sitter]
version = "0.25"
[dependencies.tree-sitter-go]
version = "0.23"
[dependencies.tree-sitter-python]
version = "0.23"
[dependencies.tree-sitter-ruby]
version = "0.23"
[dependencies.tree-sitter-rust]
version = "0.24"
[dependencies.tree-sitter-typescript]
version = "0.23.2"