libbeef 0.1.0

A Rust translation of Fabrice Bellard's libbf arbitrary precision numeric library.
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 = "libbeef"
version = "0.1.0"
authors = ["Kang Seonghoon <public+rust@mearie.org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust translation of Fabrice Bellard's libbf arbitrary precision numeric library."
readme = "README.md"
license = "MIT"
repository = "https://github.com/lifthrasiir/libbeef"

[features]
default = ["std"]
num-integer = ["num-traits"]
num-traits = []
serde = []
std = []
vs = [
    "vs_num_bigint",
    "vs_rug",
    "vs_malachite",
]
vs_malachite = ["dep:malachite-nz"]
vs_num_bigint = ["dep:num-bigint"]
vs_rug = ["dep:rug"]

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

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

[[example]]
name = "sin_product_malachite"
path = "examples/sin_product_malachite.rs"
required-features = ["vs_malachite"]

[[example]]
name = "sin_product_num_bigint"
path = "examples/sin_product_num_bigint.rs"
required-features = ["vs_num_bigint"]

[[example]]
name = "sin_product_rug"
path = "examples/sin_product_rug.rs"
required-features = ["vs_rug"]

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

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

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

[dependencies.malachite-nz]
version = "0.4"
optional = true

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

[dependencies.rug]
version = "1"
optional = true