//! Cast — Eloquent-shaped ORM for Anvil. Facade crate.
//!
//! ```ignore
//! use cast::{Model, Pool};
//!
//! #[derive(cast::Model)]
//! #[table("users")]
//! pub struct User {
//! pub id: i64,
//! pub name: String,
//! pub email: String,
//! }
//!
//! let users = User::query()
//! .where_eq(User::columns().email(), "x@y.com".to_string())
//! .get(&pool).await?;
//! ```
pub use *;
pub use Model;
// `#[macro_export]` macros land at the defining crate's root, not in the
// module tree that `cast_core::*` re-exports — so they need explicit re-export
// for `cast::migration!` / `anvilforge::migration!` to resolve.
pub use migration;
// Re-export sqlx and sea-query so downstream crates can rely on Cast's pinned versions.
pub use sea_query;
pub use sqlx;