[dependencies.num-traits]
version = "0.2.19"
[lib]
doctest = false
name = "approx_int"
path = "src/lib.rs"
[lints.rust.unexpected_cfgs]
check-cfg = ["cfg(tarpaulin_include)"]
level = "warn"
priority = 0
[package]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["compression"]
description = "A compact representation of numbers using a tuple (u8, u8, bool) for efficient approximation and storage."
edition = "2021"
exclude = [".github", ".gitignore", ".dockerignore", "Dockerfile", "README.md"]
keywords = ["approximation", "compression", "compact", "integer", "number"]
license = "MIT"
name = "approx_int"
readme = "README.md"
repository = "https://github.com/m62624/approx_int"
version = "1.0.1"
[[test]]
name = "constructor"
path = "tests/constructor.rs"
[[test]]
name = "eq"
path = "tests/eq.rs"
[[test]]
name = "from"
path = "tests/from.rs"
[[test]]
name = "ops"
path = "tests/ops.rs"