[package]
name = "round_float"
version = "1.1.1"
description = "Round `f64` and `f32` to specified number of decimals."
keywords = ["round", "float", "round_float", "f32", "f64"]
categories = ["no-std", "algorithms", "science"]
repository = "https://github.com/amab8901/round_float"
documentation = "https://docs.rs/round_float"
authors = ["Amir Abdin <amab8901@protonmail.com>"]
readme = "README.md"
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.75.0"
[dependencies]
anyhow = "1.0.86"
num-traits = "0.2.19"
[workspace.lints.clippy]
let_and_return = "allow"
module_name_repetitions = "allow"
similar_names = "allow"
must_use_candidate = "allow"
missing_inline_inpublic_items = "allow"
std_instead_of_core = "allow"
non_exhaustive_structs = "allow"
mod_module_files = "allow"
self_named_module_files = "allow"
pedantic = {level = "warn", priority = -1}
[features]
no_std = []