sqlite-knowledge-graph 0.10.0

A Rust library for building and querying knowledge graphs using SQLite as the backend, with graph algorithms, vector search, and RAG support
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.70"
name = "sqlite-knowledge-graph"
version = "0.10.0"
authors = ["Hi Yen Wong"]
build = false
exclude = [
    "/.github",
    "/benches",
    "/tests",
    "/docs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust library for building and querying knowledge graphs using SQLite as the backend, with graph algorithms, vector search, and RAG support"
homepage = "https://github.com/hiyenwong/sqlite-knowledge-graph"
documentation = "https://docs.rs/sqlite-knowledge-graph"
readme = "README.md"
keywords = [
    "sqlite",
    "knowledge-graph",
    "graph-algorithms",
    "vector-search",
    "rag",
]
categories = [
    "database",
    "data-structures",
    "science",
]
license = "MIT"
repository = "https://github.com/hiyenwong/sqlite-knowledge-graph"

[features]
bundled = ["rusqlite/bundled"]
default = []

[lib]
name = "sqlite_knowledge_graph"
crate-type = [
    "cdylib",
    "rlib",
]
path = "src/lib.rs"

[[bin]]
name = "migrate"
path = "src/bin/migrate.rs"

[dependencies.chrono]
version = "0.4.44"

[dependencies.ndarray]
version = "0.15"

[dependencies.rand]
version = "0.8"

[dependencies.rusqlite]
version = "0.32"
features = [
    "functions",
    "blob",
]

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.sqlite-loadable]
version = "0.0.6-alpha.6"

[dependencies.thiserror]
version = "1.0"

[dependencies.tracing]
version = "0.1"

[dev-dependencies.criterion]
version = "0.5"

[dev-dependencies.shellexpand]
version = "3.1"

[dev-dependencies.tempfile]
version = "3.10"

[profile.release]
strip = true