imagnum 0.2.21

A Rust library providing versatile numeric types supporting integers and floats designed for the Lucia programming language.
Documentation
[[bin]]
name = "repl"
path = "simple-repl.rs"

[dependencies.bigdecimal]
version = "0.4.8"

[dependencies.num-bigint]
version = "0.4"

[dependencies.num-integer]
version = "0.1"

[dependencies.num-traits]
version = "0.2"

[dependencies.once_cell]
version = "1.21.3"

[lib]
name = "imagnum"
path = "imagnum.rs"

[package]
authors = ["SirPigari"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["mathematics"]
default-run = "repl"
description = "A Rust library providing versatile numeric types supporting integers and floats designed for the Lucia programming language."
documentation = "https://docs.rs/imagnum"
edition = "2024"
homepage = "https://github.com/SirPigari/imagnum"
keywords = ["numeric", "numbers", "float", "integer", "lucia"]
license = "MIT"
name = "imagnum"
readme = "README.md"
repository = "https://github.com/SirPigari/imagnum"
version = "0.2.21"

[profile.release]
codegen-units = 1
debug = 0
lto = "fat"
opt-level = 3
panic = "abort"
strip = false

[[test]]
name = "all_features"
path = "tests/all_features.rs"

[[test]]
name = "complex"
path = "tests/complex.rs"

[[test]]
name = "display_format"
path = "tests/display_format.rs"

[[test]]
name = "from_hex"
path = "tests/from_hex.rs"

[[test]]
name = "mixed_ref_value_ops"
path = "tests/mixed_ref_value_ops.rs"

[[test]]
name = "negative_numbers"
path = "tests/negative_numbers.rs"

[[test]]
name = "ord"
path = "tests/ord.rs"

[[test]]
name = "overflow"
path = "tests/overflow.rs"

[[test]]
name = "pow"
path = "tests/pow.rs"

[[test]]
name = "radix"
path = "tests/radix.rs"

[[test]]
name = "recurring_equality"
path = "tests/recurring_equality.rs"

[[test]]
name = "ref_ops"
path = "tests/ref_ops.rs"

[[test]]
name = "small_types"
path = "tests/small_types.rs"

[[test]]
name = "transcendental"
path = "tests/transcendental.rs"