[package]
edition = "2024"
name = "akar-common"
version = "0.1.2"
authors = ["Anjang Kusuma Netra"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared types and utilities 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"
[lib]
name = "akar_common"
path = "src/lib.rs"
[dependencies.arrow]
version = "59.1.0"
features = [
"csv",
"ipc",
"prettyprint",
]
default-features = false
[dependencies.flate2]
version = "1.0"
features = ["rust_backend"]
[dependencies.indicatif]
version = "0.18"
[dependencies.rayon]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dev-dependencies]
[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"