[package]
edition = "2024"
rust-version = "1.94"
name = "sqry-db"
version = "15.0.1"
authors = ["Verivus Pty Ltd"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Salsa-style incremental computation engine for sqry semantic code search"
readme = false
license = "MIT"
repository = "https://github.com/verivus-oss/sqry"
resolver = "2"
[lib]
name = "sqry_db"
path = "src/lib.rs"
[[test]]
name = "cache_test"
path = "tests/cache_test.rs"
[[test]]
name = "dependency_test"
path = "tests/dependency_test.rs"
[[test]]
name = "execute_plan_test"
path = "tests/execute_plan_test.rs"
[[test]]
name = "fusion_test"
path = "tests/fusion_test.rs"
[[test]]
name = "name_predicate_alignment"
path = "tests/name_predicate_alignment.rs"
[[test]]
name = "parser_test"
path = "tests/parser_test.rs"
[[test]]
name = "planner_ir_test"
path = "tests/planner_ir_test.rs"
[[test]]
name = "proof_cold_start_persistence"
path = "tests/proof_cold_start_persistence.rs"
[[test]]
name = "proof_edge_tombstone_ordering"
path = "tests/proof_edge_tombstone_ordering.rs"
[[test]]
name = "proof_hot_cache_persistence"
path = "tests/proof_hot_cache_persistence.rs"
[[test]]
name = "proof_incremental_reindex"
path = "tests/proof_incremental_reindex.rs"
[[test]]
name = "proof_query_fusion"
path = "tests/proof_query_fusion.rs"
[[test]]
name = "query_builder_test"
path = "tests/query_builder_test.rs"
[[test]]
name = "unused_post_filter"
path = "tests/unused_post_filter.rs"
[[bench]]
name = "fusion_bench"
path = "benches/fusion_bench.rs"
harness = false
[dependencies.anyhow]
version = "1.0"
[dependencies.globset]
version = "0.4"
[dependencies.log]
version = "0.4"
[dependencies.parking_lot]
version = "0.12"
[dependencies.postcard]
version = "1"
features = [
"use-std",
"alloc",
]
default-features = false
[dependencies.regex]
version = "1.12"
[dependencies.regex-syntax]
version = "0.8"
[dependencies.serde]
version = "1.0"
features = [
"derive",
"rc",
]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.11"
[dependencies.smallvec]
version = "1.15"
[dependencies.sqry-core]
version = "15.0.1"
[dependencies.strsim]
version = "0.11"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]
[dev-dependencies.env_logger]
version = "0.11"
features = [
"auto-color",
"regex",
]
default-features = false
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.tempfile]
version = "3.27"