stdbr_core/lib.rs
1//! `stdbr-core` - standard library for Brazil.
2//!
3//! `no_std` compatible (requires `alloc`). Enable the default `std` feature
4//! for better seeding in generation functions. Generated values use a small
5//! non-cryptographic PRNG and must not be used as secrets.
6
7#![cfg_attr(not(feature = "std"), no_std)]
8extern crate alloc;
9
10pub mod rand;
11pub(crate) mod util;
12
13pub mod cep;
14pub mod cnpj;
15pub mod cpf;
16#[cfg(feature = "municipio")]
17pub mod municipio;
18pub mod rg;
19pub mod uf;