smart-big-rational 0.2.0

Efficient rational numbers for additions, subtractions and multiplications
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 = "2024"
rust-version = "1.91.0"
name = "smart-big-rational"
version = "0.2.0"
authors = ["Guillaume Endignoux <guillaumee@google.com>"]
build = "build.rs"
exclude = [".github/*"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Efficient rational numbers for additions, subtractions and multiplications"
readme = "README.md"
keywords = [
    "arithmetic",
    "exact",
    "fractions",
    "numerics",
    "rational",
]
categories = [
    "algorithms",
    "data-structures",
    "mathematics",
    "science",
]
license = "Apache-2.0"
repository = "https://github.com/gendx/smart-big-rational"

[package.metadata.docs.rs]
rustdoc-args = [
    "--cfg",
    "docsrs",
    "--generate-link-to-definition",
]

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

[[bench]]
name = "bench"
path = "benches/bench.rs"

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

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

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

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

[dependencies.smallvec]
version = "1.15"
features = ["const_new"]

[dev-dependencies.rand]
version = "0.10"