LeopoldArkham/humansize

no_std support

remexre opened this issue · 1 comments

It'd be nice to have support for using core+alloc only, rather than full-blown std.

Although if possible, it'd honestly be nicer to not require alloc (for Strings) and instead return a Result<FileSizeWrite, FileSizeError> from file_size, where FileSizeWrite: core::fmt::Write and FileSizeError is similarly non-allocating.

The correct trait here is FileSizeWrite: Display as opposed to Write.