postgres_static_analyzer_reflect_queries/
lib.rs1mod array_iterator;
4pub mod client;
5mod domain;
6#[allow(clippy::all, clippy::pedantic)]
7#[allow(unused_variables)]
8#[allow(unused_imports)]
9#[allow(dead_code)]
10pub mod queries;
11mod type_traits;
12#[allow(clippy::all, clippy::pedantic)]
13#[allow(unused_variables)]
14#[allow(unused_imports)]
15#[allow(dead_code)]
16pub mod types;
17mod utils;
18pub use array_iterator::ArrayIterator;
19#[cfg(feature = "deadpool")]
20pub use deadpool_postgres;
21pub use domain::{Domain, DomainArray};
22#[cfg(not(any(feature = "deadpool", feature = "wasm-async")))]
23pub use postgres;
24#[cfg(not(any(feature = "deadpool", feature = "wasm-async")))]
25pub use postgres::fallible_iterator;
26#[cfg(any(feature = "deadpool", feature = "wasm-async"))]
27pub use tokio_postgres;
28#[cfg(any(feature = "deadpool", feature = "wasm-async"))]
29pub use tokio_postgres::fallible_iterator;
30pub use type_traits::{ArraySql, BytesSql, IterSql, StringSql};
31pub(crate) use utils::slice_iter;