Skip to content
3 changes: 3 additions & 0 deletions postgres-protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,6 @@ rand = "0.9"
sha2 = "0.10"
stringprep = "0.1"
getrandom = { version = "0.3", optional = true }

[dev-dependencies]
proptest = "=1.8.0" # 1.9.0 changes MSRV to 1.82.0
3 changes: 3 additions & 0 deletions postgres-protocol/src/types/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ use std::str;

use crate::{write_nullable, FromUsize, IsNull, Lsn, Oid};

pub use numeric::{numeric_from_sql, numeric_to_sql, Numeric, NumericSign};

mod numeric;
#[cfg(test)]
mod test;

Expand Down
Loading