[package]
edition = "2024"
name = "fin_decimal"
version = "0.2.2"
authors = ["Vadim Sukhomlinov <vadim.sukhomlinov@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance decimal fixed-point arithmetic library for financial applications"
documentation = "https://docs.rs/fin_decimal"
readme = "README.md"
keywords = [
"decimal",
"math",
"number",
"fixed-point",
]
categories = [
"algorithms",
"data-structures",
"mathematics",
"no-std",
]
license = "BSD-4-Clause"
repository = "https://github.com/vsukhoml/fin_decimal"
[features]
asm = []
default = []
full-quickcheck = []
noasm = []
unstable = []
[lib]
name = "fin_decimal"
path = "src/lib.rs"
bench = false
[[example]]
name = "asm_probe"
path = "examples/asm_probe.rs"
[[bench]]
name = "perf"
path = "benches/perf.rs"
harness = false
[dependencies.serde]
version = "1.0"
optional = true
default-features = false
[dependencies.ufmt]
version = "0.2.0"
optional = true
default-features = false
[profile.release]
opt-level = 3
debug = 2
panic = "abort"
overflow-checks = true