zmij

Crates.iozmij
lib.rszmij
version1.0.17
created_at2025-12-18 06:03:00.609652+00
updated_at2026-01-25 19:17:06.865769+00
descriptionA double-to-string conversion algorithm based on Schubfach and yy
homepage
repositoryhttps://github.com/dtolnay/zmij
max_upload_size
id1991770
size86,634
Lanthanum (github:zxtn:lanthanum)

documentation

https://docs.rs/zmij

README

Żmij

github crates.io docs.rs build status

Pure Rust implementation of Żmij, an algorithm to quickly convert floating point numbers to decimal strings.

This Rust implementation is a line-by-line port of Victor Zverovich's implementation in C++, https://github.com/vitaut/zmij.

Example

fn main() {
    let mut buffer = zmij::Buffer::new();
    let printed = buffer.format(1.234);
    assert_eq!(printed, "1.234");
}

Performance

The dtoa-benchmark compares this library and other Rust floating point formatting implementations across a range of precisions. The vertical axis in this chart shows nanoseconds taken by a single execution of zmij::Buffer::new().format_finite(value) so a lower result indicates a faster library.

performance


License

MIT license.

Commit count: 356

cargo fmt