memstead-schema 0.7.0

Schema types for Memstead — entity definitions, vocabulary, and validation rules. Internal library surface consumed by the memstead binaries — pre-1.0, experimental, no API stability promise.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Re-embed trigger for the `include_dir!` builtins catalogue.
//!
//! Without this, cargo does not invalidate the compiled-in
//! `builtins/schemas/` embed when a schema *directory* is added,
//! removed, or restored — a locally stale embed then makes the
//! retention guard (`tests/builtin_retention.rs`) report a
//! present-on-disk version as absent until a forced rebuild.

fn main() {
    println!("cargo:rerun-if-changed=builtins");
}