holocron 0.4.0

Declarative schema & query compiler — one YAML as the source of truth for SQL schema and a type-checked query catalog.
Documentation
1
2
3
4
5
6
7
8
# Should fail: this table is missing the required `columns` field.
# Caught by L1 (parse) — exit 1.
#
# Run: cargo run -- samples/error_missing_key.holocron.yaml

tables:
  - name: tasks
    primary_key: { columns: [task_id] }