#![doc = include_str!(concat!(env!("OUT_DIR"), "/README-lib.md"))]
#![forbid(unsafe_code)]
#![deny(clippy::print_stdout, clippy::print_stderr)]
#![cfg_attr(not(feature = "std"), no_std)]
extern crate alloc;
mod constants;
mod decimal;
mod error;
mod ops;
mod str;
mod arithmetic_impls;
#[cfg(feature = "rust-fuzz")]
mod fuzz;
#[cfg(feature = "maths")]
mod maths;
#[cfg(any(feature = "db-diesel1-mysql", feature = "db-diesel2-mysql"))]
mod mysql;
#[cfg(any(
feature = "db-tokio-postgres",
feature = "db-postgres",
feature = "db-diesel1-postgres",
feature = "db-diesel2-postgres",
))]
mod postgres;
#[cfg(feature = "proptest")]
mod proptest;
#[cfg(feature = "rand")]
mod rand;
#[cfg(feature = "rocket-traits")]
mod rocket;
#[cfg(all(
feature = "serde",
not(any(
feature = "serde-with-str",
feature = "serde-with-float",
feature = "serde-with-arbitrary-precision"
))
))]
mod serde;
#[cfg(all(
feature = "serde",
any(
feature = "serde-with-str",
feature = "serde-with-float",
feature = "serde-with-arbitrary-precision"
)
))]
pub mod serde;
pub use decimal::{Decimal, RoundingStrategy};
pub use error::Error;
#[cfg(feature = "maths")]
pub use maths::MathematicalOps;
pub mod prelude {
#[cfg(feature = "maths")]
pub use crate::maths::MathematicalOps;
pub use crate::{Decimal, RoundingStrategy};
pub use core::str::FromStr;
pub use num_traits::{FromPrimitive, One, Signed, ToPrimitive, Zero};
}
#[cfg(all(feature = "diesel1", not(feature = "diesel2")))]
#[macro_use]
extern crate diesel1 as diesel;
#[cfg(feature = "diesel2")]
extern crate diesel2 as diesel;
pub type Result<T> = core::result::Result<T, Error>;