[package]
edition = "2021"
rust-version = "1.77"
name = "ruvix-vecgraph"
version = "0.1.0"
authors = ["RuVector Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Kernel-resident vector and graph stores for RuVix Cognition Kernel (ADR-087)"
readme = "README.md"
keywords = [
"kernel",
"vector",
"graph",
"hnsw",
"proof-gated",
]
categories = [
"data-structures",
"no-std",
"embedded",
"os",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ruvnet/ruvector"
[features]
alloc = [
"ruvix-types/alloc",
"ruvix-region/alloc",
]
coherence = []
default = ["std"]
stats = []
std = [
"ruvix-types/std",
"ruvix-region/std",
]
[lib]
name = "ruvix_vecgraph"
crate-type = ["rlib"]
path = "src/lib.rs"
[[test]]
name = "proof_gated"
path = "tests/proof_gated.rs"
[dependencies.ruvix-region]
version = "0.1.0"
[dependencies.ruvix-types]
version = "0.1.0"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "1.4"