gize-core 0.7.3

Core domain model, conventions and manifest for the Gize framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! 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 dialect;
pub mod field;
pub mod manifest;
pub mod naming;

pub use dialect::Dialect;
pub use field::{Field, FieldType, ModelSpec, Relation};
pub use manifest::{Api, Manifest, Module};