gize-core 0.3.0

Core domain model, conventions and manifest for the Gize framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Core domain model and conventions for the Gize framework.
//!
//! This crate is intentionally framework-agnostic: it knows nothing about Axum, SQLx or
//! the CLI. It defines the vocabulary the rest of the workspace shares — the project
//! manifest (`gize.toml`), model/field definitions, and naming conventions.

pub mod field;
pub mod manifest;
pub mod naming;

pub use field::{Field, FieldType, ModelSpec};
pub use manifest::Manifest;