# Dragonbox
[](https://github.com/dtolnay/dragonbox)
[](https://crates.io/crates/dragonbox)
[](https://docs.rs/dragonbox)
[](https://github.com/dtolnay/dragonbox/actions?query=branch%3Amaster)
This crate contains a basic port of to
Rust for benchmarking purposes.
Please see the upstream repo for an explanation of the approach and comparison
to the Ryƫ algorithm.
## Example
```rust
fn main() {
let mut buffer = dragonbox::Buffer::new();
let printed = buffer.format(1.234);
assert_eq!(printed, "1.234E0");
}
```
## Performance (lower is better)
![performance](https://raw.githubusercontent.com/dtolnay/dragonbox/master/performance.png)
#### 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.