Compare commits

...

1 commit

Author SHA1 Message Date
fc6e91db98 feat: add lib.rs #8
Some checks failed
cargo devel CI / cargo CI (push) Has been cancelled
2024-05-12 18:43:44 +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;