[package]
edition = "2024"
name = "akar-sqlite"
version = "0.1.0"
authors = ["Anjang Kusuma Netra"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SQLite extension for the Akar embedded graph database"
readme = "README.md"
keywords = [
"graph",
"database",
"embedded",
"cypher",
"ai-agent",
]
categories = [
"database",
"database-implementations",
]
license = "GPL-3.0-or-later"
repository = "https://github.com/mlengse/akar"
resolver = "2"
[features]
bundled = ["rusqlite/bundled"]
default = []
[lib]
name = "akar_sqlite"
path = "src/lib.rs"
[dependencies.akar-extension]
version = "0.1.0"
[dependencies.akar-function]
version = "0.1.0"
[dependencies.rusqlite]
version = "0.40.1"
features = ["bundled"]
optional = true
[dependencies.tracing]
version = "0.1"
[lints.clippy]
clone_on_copy = "allow"
cloned_ref_to_slice_refs = "allow"
collapsible_if = "allow"
collapsible_match = "allow"
empty_line_after_doc_comments = "allow"
if_same_then_else = "allow"
items_after_test_module = "allow"
len_without_is_empty = "allow"
match_like_matches_macro = "allow"
needless_range_loop = "allow"
too_many_arguments = "allow"
type_complexity = "allow"