feat/other-formats #7

Merged
PlexSheep merged 6 commits from feat/other-formats into master 2024-05-12 18:46:11 +02:00
1 changed files with 10 additions and 0 deletions
Showing only changes of commit ec4aa09538 - Show all commits

10
src/lib.rs Normal file
View File

@ -0,0 +1,10 @@
//! Format numbers
//!
//! This crate contains several utility functions for formatting numbers
//! into other systems, such as converting decimal numbers to hexadecimal.
//!
//! See [Format] for supported formats.
//!
//! Note that this crate is primarily used as a executable.
pub mod format;