[package] name = "ryu_floating_decimal" version = "0.1.0" authors = ["Matt Torrence"] license = "Apache-2.0" description = "Fast floating point to floating decimal conversion. See the crate 'ryu' for more details" repository = "https://github.com/torrencem/ryu-floating-decimal" documentation = "https://docs.rs/ryu-floating-decimal" readme = "README.md" build = "build.rs" [features] # Use smaller lookup tables. Instead of storing every required power of # 5, only store every 26th entry, and compute intermediate values with a # multiplication. This reduces the lookup table size by about 10x (only # one case, and only f64) at the cost of some performance. small = [] [dependencies] no-panic = { version = "0.1", optional = true } [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"]