[package]
edition = "2024"
name = "floating_bar"
version = "0.5.0"
authors = ["1011X <1011XXXXX@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Representing rational numbers using the floating-bar number type."
readme = "README.md"
keywords = [
"float",
"floating",
"bar",
"rational",
]
categories = ["data-structures"]
license = "0BSD"
repository = "https://github.com/1011X/floating_bar"
[features]
bench = []
default = ["std"]
std = []
[lib]
name = "floating_bar"
path = "src/lib.rs"
[[bench]]
name = "r32_add"
path = "benches/r32_add.rs"
harness = false
[[bench]]
name = "r32_div"
path = "benches/r32_div.rs"
harness = false
[[bench]]
name = "r32_mul"
path = "benches/r32_mul.rs"
harness = false
[[bench]]
name = "r64_add"
path = "benches/r64_add.rs"
harness = false
[[bench]]
name = "r64_mul"
path = "benches/r64_mul.rs"
harness = false
[dependencies.gcd]
version = "2.3.0"
[dev-dependencies.criterion]
version = "0.3"