dragonbox_ecma

Crates.iodragonbox_ecma
lib.rsdragonbox_ecma
version0.0.5
created_at2025-05-31 15:16:56.033498+00
updated_at2025-08-05 11:45:55.032154+00
descriptionFast floating point to string conversion conforming to ECMAScript specification
homepage
repositoryhttps://github.com/magic-akari/dragonbox
max_upload_size
id1696431
size103,612
(magic-akari)

documentation

https://docs.rs/dragonbox_ecma

README

Dragonbox ECMA

Dragonbox ECMA is a fork of the Dragonbox crate adjusted to comply with the ECMAScript number-to-string algorithm.

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_ecma::Buffer::new();
    let printed = buffer.format(1.234);
    assert_eq!(printed, "1.234");
}

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.
Commit count: 94

cargo fmt