1[package]
2name = "ryu"
3version = "1.0.2"
4authors = ["David Tolnay <dtolnay@gmail.com>"]
5license = "Apache-2.0 OR BSL-1.0"
6description = "Fast floating point to string conversion"
7repository = "https://github.com/dtolnay/ryu"
8documentation = "https://docs.rs/ryu"
9readme = "README.md"
10build = "build.rs"
11
12[features]
13# Use smaller lookup tables. Instead of storing every required power of
14# 5, only store every 26th entry, and compute intermediate values with a
15# multiplication. This reduces the lookup table size by about 10x (only
16# one case, and only f64) at the cost of some performance.
17small = []
18
19[dependencies]
20no-panic = { version = "0.1", optional = true }
21
22[dev-dependencies]
23num_cpus = "1.8"
24rand = "0.5"
25
26[badges]
27travis-ci = { repository = "dtolnay/ryu" }
28