3 releases
| 0.0.5 | Aug 5, 2025 |
|---|---|
| 0.0.4 | Aug 5, 2025 |
| 0.0.3 | Jun 1, 2025 |
| 0.0.2 |
|
| 0.0.1 |
|
#72 in Value formatting
84,524 downloads per month
Used in 89 crates
(3 directly)
72KB
1.5K
SLoC
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)

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.