Skip to main content

rust_ef_postgres/
lib.rs

1//! PostgreSQL provider for Rust Entity Framework.
2
3pub mod connection;
4pub mod di_extension;
5pub mod introspection;
6pub mod provider;
7pub mod row_conversion;
8pub mod sql_generator;
9pub mod tls;
10pub mod type_conversion;
11pub mod type_mapping;
12
13pub use connection::PostgresConnection;
14pub use di_extension::DbContextOptionsBuilderExt;
15pub use introspection::{introspect_postgres, DbColumn, DbTable};
16pub use provider::PostgresProvider;
17pub use sql_generator::PostgresSqlGenerator;
18pub use tls::PgTlsMode;
19pub use type_mapping::PostgresTypeMapping;