[package]
name = "fixed_decimal"
description = "An API for representing numbers in a human-readable form"
version = "0.2.2"
authors = ["The ICU4X Project Developers"]
edition = "2018"
readme = "README.md"
repository = "https://github.com/unicode-org/icu4x"
license-file = "LICENSE"
categories = ["internationalization"]
include = [
"src/**/*",
"examples/**/*",
"benches/**/*",
"tests/**/*",
"Cargo.toml",
"LICENSE",
"README.md"
]
[package.metadata.docs.rs]
all-features = true
[dependencies]
smallvec = "1.6"
static_assertions = "1.1"
writeable = { version = "0.3", path = "../../utils/writeable" }
displaydoc = { version = "0.2.3", default-features = false }
ryu = { version = "1.0.5", optional = true, features = ["small"] }
[dev-dependencies]
criterion = "0.3.4"
icu_benchmark_macros = { version = "0.4", path = "../../tools/benchmark/macros" }
rand = "0.8"
rand_pcg = "0.3"
rand_distr = "0.4"
getrandom = { version = "0.2", features = ["js"] }
[lib]
bench = false
path = "src/lib.rs"
[features]
default = []
std = []
bench = []
[[bench]]
name = "fixed_decimal"
harness = false