aristo-core 0.1.0

Aristo SDK core: shared types, .aristo/index.toml schema, B5b verification, language registry.
Documentation
//! Aristo SDK shared library.
//!
//! Houses protocol logic shared between the proc-macro crate and the CLI:
//! - `.aristo/index.toml` schema and IO (see [`index`])
//! - B5b four-check verification pipeline (signature → identity → content → ancestry)
//! - Bundled server public-key registry
//! - `LanguageSyntax` registry (per K5)
//!
//! ## Design: serde-first, schema-derived
//!
//! Types in this crate are the canonical source of truth for every Aristo
//! file format. Validation falls out of `serde::Deserialize` via newtype
//! patterns — invalid values fail at parse time with a structural error.
//! Cross-language consumers receive a JSON Schema derived from these types
//! via `schemars` (see the `dump-schemas` example in a later slice).

pub mod auth;
pub mod badge;
pub mod canon;
pub mod canon_verify;
pub mod config;
pub mod critique;
pub mod cycle;
pub mod git;
pub mod hash;
pub mod id;
pub mod index;
pub mod proof;
pub mod spec;
pub mod walk;