gmp-mpfr-sys 1.5.1

Rust FFI bindings for GMP, MPFR and MPC
Documentation
# Copyright © 2017–2023 Trevor Spiteri

# Copying and distribution of this file, with or without modification,
# are permitted in any medium without royalty provided the copyright
# notice and this notice are preserved. This file is offered as-is,
# without any warranty.

[package]
name = "gmp-mpfr-sys"
version = "1.5.1"
edition = "2021"
rust-version = "1.65"
description = "Rust FFI bindings for GMP, MPFR and MPC"
documentation = "https://docs.rs/gmp-mpfr-sys"
repository = "https://gitlab.com/tspiteri/gmp-mpfr-sys"
readme = "README.md"
keywords = ["bignum", "ffi", "gmp", "math", "numerics"]
categories = ["external-ffi-bindings", "mathematics", "no-std"]
license = "LGPL-3.0+"
build = "build.rs"
links = "gmp"

[features]
default = ["mpfr", "mpc"]
mpfr = []
mpc = ["mpfr"]
use-system-libs = []
fail-on-warnings = []
force-cross = []
c-no-tests = []

# With the cnodelete feature, C build artefacts are not deleted.

cnodelete = []

[dependencies.libc]
version = "0.2.44"
default-features = false

[target.'cfg(target_os = "windows")'.build-dependencies.windows-sys]
version = "0.42"
features = ["Win32_Foundation", "Win32_Globalization", "Win32_System_Com", "Win32_UI_Shell"]