[package]
edition = "2021"
name = "primitive_fixed_point_decimal"
version = "1.4.2"
authors = ["Wu Bingzheng <wubingzheng@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Primitive fixed-point decimal types."
documentation = "https://docs.rs/primitive_fixed_point_decimal"
readme = "README.md"
keywords = [
"fixed-point",
"decimal",
]
categories = [
"data-structures",
"finance",
"mathematics",
"no-std",
"no-std::no-alloc",
]
license = "MIT"
repository = "https://github.com/WuBingzheng/primitive_fixed_point_decimal"
[lib]
name = "primitive_fixed_point_decimal"
path = "src/lib.rs"
[[bench]]
name = "vs_rust_decimal"
path = "benches/vs_rust_decimal.rs"
harness = false
[dependencies.num-traits]
version = "0.2"
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
default-features = false
[dev-dependencies.criterion]
version = "0.7"
features = ["html_reports"]
[dev-dependencies.rust_decimal]
version = "1.40.0"
features = ["macros"]