[package]
edition = "2021"
name = "ancdec"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast, precise fixed-point decimal with independent 19+19 digit precision"
readme = "README.md"
keywords = [
"decimal",
"fixed-point",
"no_std",
"finance",
"arithmetic",
]
categories = [
"no-std",
"mathematics",
"finance",
]
license = "MIT"
repository = "https://github.com/ktg0413/ancdec"
[features]
default = []
serde = ["dep:serde"]
[lib]
name = "ancdec"
path = "src/lib.rs"
[[test]]
name = "ancdec_tests"
path = "tests/ancdec_tests.rs"
[[bench]]
name = "ancdec_bench"
path = "benches/ancdec_bench.rs"
harness = false
[dependencies.serde]
version = "1.0"
optional = true
default-features = false
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.rust_decimal]
version = "1.33"
[dev-dependencies.serde_json]
version = "1.0"