[package]
edition = "2021"
rust-version = "1.79"
name = "zova"
version = "0.26.1"
build = false
include = [
"Cargo.toml",
"LICENSE",
"README.md",
"src/**",
"tests/**",
"examples/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Safe Rust bindings for Zova, a SQLite-backed embedded database for records, objects, vectors, and graph relationships."
homepage = "https://github.com/ata-sesli/zova"
documentation = "https://docs.rs/zova"
readme = "README.md"
keywords = [
"zova",
"sqlite",
"embedded",
"vectors",
"graphs",
]
categories = [
"database",
"api-bindings",
]
license = "MIT"
repository = "https://github.com/ata-sesli/zova"
[lib]
name = "zova"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "extensions"
path = "examples/extensions.rs"
[[example]]
name = "graph_rag"
path = "examples/graph_rag.rs"
[[example]]
name = "graphs"
path = "examples/graphs.rs"
[[example]]
name = "notifications"
path = "examples/notifications.rs"
[[example]]
name = "objects"
path = "examples/objects.rs"
[[example]]
name = "vectors"
path = "examples/vectors.rs"
[[test]]
name = "graphs"
path = "tests/graphs.rs"
[[test]]
name = "lifecycle"
path = "tests/lifecycle.rs"
[[test]]
name = "notifications"
path = "tests/notifications.rs"
[[test]]
name = "objects"
path = "tests/objects.rs"
[[test]]
name = "shared"
path = "tests/shared.rs"
[[test]]
name = "vectors"
path = "tests/vectors.rs"
[dependencies.zova-sys]
version = "0.26.1"