crypto-ratio 0.1.0

Rational number arithmetic using crypto-bigint
Documentation
[[bench]]
harness = false
name = "ratio_benchmark_u512"
path = "benches/ratio_benchmark_u512.rs"

[[bench]]
harness = false
name = "ratio_benchmarks_full"
path = "benches/ratio_benchmarks_full.rs"

[dependencies.crypto-bigint]
default-features = false
version = "0.5"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"

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

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

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

[features]
default = ["std"]
std = ["crypto-bigint/alloc"]

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

[package]
authors = ["Torben Poguntke <sbcdn@pm.me>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["algorithms", "mathematics", "cryptography", "no-std"]
description = "Rational number arithmetic using crypto-bigint"
documentation = "https://docs.rs/crypto-ratio"
edition = "2021"
exclude = [".github/", "target/", "*.swp", "*.swo", "*~"]
homepage = "https://github.com/sbcdn/crypto-ratio"
keywords = ["rational", "bigint", "crypto", "risc0", "zkvm"]
license = "MIT OR Apache-2.0"
name = "crypto-ratio"
readme = "README.md"
repository = "https://github.com/sbcdn/crypto-ratio"
rust-version = "1.65"
version = "0.1.0"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[profile.bench]
codegen-units = 1
lto = true
opt-level = 3

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

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