[package]
authors = ["Jorge Aparicio <jorge@japaric.io>"]
categories = ["no-std"]
description = "libm in pure Rust"
documentation = "https://docs.rs/libm"
keywords = ["libm", "math"]
license = "MIT"
name = "libm"
readme = "README.md"
repository = "https://github.com/rust-lang/compiler-builtins"
version = "0.2.12"
edition = "2021"
rust-version = "1.63"
[features]
default = ["arch"]
arch = []
unstable = ["unstable-intrinsics", "unstable-float"]
unstable-intrinsics = []
unstable-public-internals = []
unstable-float = []
force-soft-floats = []
[dev-dependencies]
no-panic = "0.1.35"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = [
'cfg(feature, values("compiler-builtins"))',
] }