spirix 0.0.6

Two's complement floating-point arithmetic library
Documentation
[package]
name = "spirix"
version = "0.0.6"
edition = "2021"
description = "Two's complement floating-point arithmetic library"
authors = ["Nick Spiker <fractaldecoder@proton.me>"]
license-file = "LICENSE"
keywords = ["mathematics", "floating-point", "numerics", "arithmetic"]
categories = ["mathematics", "algorithms", "no-std"]
readme = "README.md"
repository = "https://github.com/nickspiker/spirix"
homepage = "https://github.com/nickspiker/spirix"
documentation = "https://docs.rs/spirix"

[dependencies]
i256 = "0.2.2"
num-complex = "0.4.6"
num-integer = "0.1.46"
num-prime = "0.4.4"
num-traits = "0.2.19"
rand = "0.8.5"

[dev-dependencies]
proptest = "1.5"
approx = "0.5"
criterion = { version = "0.5", features = ["html_reports"] }
paste = "1.0"

[profile.dev]
opt-level = 3
overflow-checks = false
debug = true

[profile.release]
opt-level = 3
overflow-checks = false
debug = false

[[bench]]
name = "benchmarks"
harness = false