grounddb 1.0.0

A schema-driven data layer using Markdown files as source of truth
Documentation

grounddb

Crates.io docs.rs

Core library for GroundDB — a schema-driven data layer that uses Markdown files as the source of truth.

This crate provides schema parsing, document storage, path templates, validation, SQL views, and the Store API. Pair it with grounddb-codegen for compile-time typed Rust structs.

Usage

use grounddb::Store;

let store = Store::open("data")?;
let docs = store.collection("users").list()?;

For full documentation, examples, and the schema format, see the repository README.