[badges.mathematics]
status = "actively-developed"
[[bench]]
harness = false
name = "bench_xsum_sum"
path = "benches/bench_xsum_sum.rs"
[[bench]]
name = "common"
path = "benches/common.rs"
[dependencies]
[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.7.0"
[lib]
name = "xsum"
path = "src/lib.rs"
[package]
authors = ["Keita Nonaka <iKonnyaku40@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["algorithms", "mathematics", "science"]
description = "Fast Exact Summation of Floating-Point Numbers"
documentation = "https://docs.rs/xsum/"
edition = "2021"
exclude = ["/.github"]
homepage = "https://github.com/Gumichocopengin8/xsum.rs"
keywords = ["exact", "sum", "floating-point", "summation", "numerical-error"]
license = "MIT"
name = "xsum"
readme = "README.md"
repository = "https://github.com/Gumichocopengin8/xsum.rs"
rust-version = "1.69"
version = "0.1.2"
[profile.release]
codegen-units = 1
lto = true
strip = true
[[test]]
name = "common"
path = "tests/common.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"