1
2
3
4
5
6
7
8
9
10
11
12
//! Wasm-compatible definitions for the PostgreSQL connector.
//! This module is only available with the `postgresql` feature.
mod defaults;
pub(crate) mod error;
pub(crate) mod url;

pub use self::url::*;
pub use defaults::*;
pub use error::PostgresError;

#[cfg(feature = "postgresql-native")]
pub(crate) mod native;