[package]
edition = "2021"
name = "fin_decimal"
version = "0.1.0"
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"
[dependencies.serde]
version = "1.0"
optional = true
default-features = false
[profile.release]
opt-level = 3
debug = 2
panic = "abort"
overflow-checks = true