Skip to main content

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 RNG seeding in generation functions.
5
6#![cfg_attr(not(feature = "std"), no_std)]
7extern crate alloc;
8
9mod rand;
10pub(crate) mod util;
11
12pub mod cep;
13pub mod cnpj;
14pub mod cpf;
15pub mod municipio;
16pub mod rg;
17pub mod uf;