deps.txt 532 B

123456789101112131415
  1. # Dragonbox.nim and Schubfach.nim
  2. "Dragonbox" is Nim's "float64 to string" algorithm.
  3. "Schubfach" is Nim's "float32 to string" algorithm. These are based on
  4. https://github.com/abolz/Drachennest/blob/master/src/dragonbox.cc
  5. https://github.com/abolz/Drachennest/blob/master/src/schubfach_32.cc
  6. commit e6714a39ad331b4489d0b6aaf3968635bff4eb5e
  7. The `.cc` files were translated by c2nim via `--cpp --keepBodies --nep1`
  8. and then modified to remove the unsafe code.
  9. We used c2nim as of commit f0469c909d9e2e28d59687e394bf5ac862f561b6.