sqlite-graph 0.1.0

An embeddable graph database built on SQLite — recursive CTEs, bi-temporal edges, FTS5 search, and vector fusion in a single file
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 = "2024"
name = "sqlite-graph"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An embeddable graph database built on SQLite — recursive CTEs, bi-temporal edges, FTS5 search, and vector fusion in a single file"
readme = "README.md"
keywords = [
    "graph",
    "sqlite",
    "knowledge-graph",
    "database",
    "embedded",
]
categories = [
    "database",
    "data-structures",
]
license = "MIT"
repository = "https://github.com/rohansx/sqlite-graph"

[lib]
name = "sqlite_graph"
path = "src/lib.rs"

[[test]]
name = "graph_test"
path = "tests/graph_test.rs"

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.rusqlite]
version = "0.34"
features = [
    "bundled",
    "column_decltype",
]

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

[dependencies.serde_json]
version = "1"

[dependencies.strsim]
version = "0.11"

[dependencies.thiserror]
version = "2"

[dependencies.uuid]
version = "1"
features = ["v7"]

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