Compare commits

...

1 commit

Author SHA1 Message Date
ec4aa09538 feat: add lib.rs #10
All checks were successful
cargo devel CI / cargo CI (push) Successful in 1m14s
2024-05-12 18:43:52 +02:00

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;