9 releases

0.1.8 Dec 21, 2023
0.1.7 Jul 15, 2023
0.1.5 Mar 3, 2023
0.1.4 Dec 17, 2022
0.1.0 Jul 18, 2021

#201 in Value formatting

Download history 6/week @ 2024-02-21 4/week @ 2024-02-28 4/week @ 2024-03-13 29/week @ 2024-03-27 29/week @ 2024-04-03

58 downloads per month

Apache-2.0 WITH LLVM-exception OR BSL-1…

78KB
1.5K SLoC

Dragonbox

github crates.io docs.rs build status

This crate contains a basic port of https://github.com/jk-jeon/dragonbox to Rust for benchmarking purposes.

Please see the upstream repo for an explanation of the approach and comparison to the Ryū algorithm.


Example

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

Performance (lower is better)

performance


License

Licensed under either of Apache License, Version 2.0 with LLVM Exceptions or Boost Software License Version 1.0 at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

No runtime deps