g_math 0.1.1

Multi-domain fixed-point arithmetic library with 18 transcendental functions
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "g_math"
version = "0.1.1"
authors = ["Niels Erik Toren"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Multi-domain fixed-point arithmetic library with 18 transcendental functions"
homepage = "https://github.com/nierto/gMath"
documentation = "https://docs.rs/g_math"
readme = "README.md"
keywords = [
    "fixed-point",
    "arithmetic",
    "precision",
    "mathematics",
    "no-float",
]
categories = [
    "mathematics",
    "algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/nierto/gMath"

[features]
balanced = []
default = []
embedded = []
infinite-precision = [
    "dep:num-bigint",
    "dep:num-traits",
    "dep:num-integer",
]
legacy-tests = []
rebuild-tables = []
scientific = []

[lib]
name = "g_math"
path = "src/lib.rs"

[[example]]
name = "quickstart"
path = "examples/quickstart.rs"

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

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

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

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

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

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

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

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

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

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

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

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

[dev-dependencies.approx]
version = "0.5"

[dev-dependencies.criterion]
version = "0.4"

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

[dev-dependencies.num-rational]
version = "0.4"

[dev-dependencies.proptest]
version = "1.0"

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

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

[build-dependencies.num-rational]
version = "0.4"

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

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
    'cfg(table_format, values("q64_64", "q128_128", "q256_256", "q512_512"))',
    "cfg(q64_64)",
    "cfg(q128_128)",
    "cfg(q256_256)",
    "cfg(q512_512)",
    'cfg(feature, values("rebuild-tables"))',
]

[profile.bench]
opt-level = 3
lto = true
debug = 2

[profile.release]
opt-level = 3
lto = true
codegen-units = 1
debug = 0