dk-engine 0.2.42

dkod code analysis engine — semantic parsing, indexing, and search
Documentation
[package]
name = "dk-engine"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "dkod code analysis engine — semantic parsing, indexing, and search"
homepage = "https://dkod.io"
keywords = ["ai", "agents", "code", "semantic"]
categories = ["development-tools"]

[dependencies]
dk-core.workspace = true
anyhow.workspace = true
thiserror.workspace = true
serde.workspace = true
serde_json.workspace = true
tokio.workspace = true
tracing.workspace = true
uuid.workspace = true
sqlx.workspace = true
chrono.workspace = true
gix = { version = "0.79", features = ["max-performance", "tree-editor"] }
tree-sitter = "0.24"
tree-sitter-rust = "0.23"
tree-sitter-typescript = "0.23"
tree-sitter-python = "0.23"
tantivy = "0.22"
arc-swap = "1"
dashmap = "6"
rmp-serde.workspace = true
sha2 = "0.10"
async-trait.workspace = true
opendal = { workspace = true, optional = true }
qdrant-client = { workspace = true, optional = true }
redis = { workspace = true, optional = true }

[features]
default = []
s3 = ["dep:opendal"]
qdrant = ["dep:qdrant-client"]
valkey = ["dep:redis"]

[dev-dependencies]
tempfile = "3"
tokio = { workspace = true, features = ["test-util", "macros"] }