toolu_orm_core/lib.rs
1// Re-export backend crates so downstream dependents (e.g. orm-cli) can
2// reference row types without declaring their own direct dependency.
3#[cfg(feature = "libsql")]
4pub use libsql;
5#[cfg(feature = "rusqlite")]
6pub use rusqlite;
7#[cfg(feature = "postgres")]
8pub use tokio_postgres;
9
10pub mod column;
11pub mod dialect;
12pub mod diff;
13pub mod error;
14pub mod expr;
15pub mod index;
16pub mod journal;
17pub mod ordering;
18pub mod query_column;
19pub mod relation;
20pub mod relational_row;
21pub mod rename;
22pub mod row;
23pub mod schema;
24pub mod snapshot;
25pub mod sql;
26pub mod table;
27pub mod value;