[package]
edition = "2021"
rust-version = "1.85.0"
name = "trig-const"
version = "0.4.0"
authors = ["Michael Ciraci <michaelciraci@hotmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Const trig functions in Rust"
homepage = "https://github.com/michaelciraci/trig-const"
documentation = "http://docs.rs/trig-const"
readme = "README.md"
keywords = [
"const",
"trig",
"no_std",
]
categories = [
"mathematics",
"no-std",
]
license = "MIT"
repository = "https://github.com/michaelciraci/trig-const"
[features]
nightly = ["dep:libm"]
std = []
[lib]
name = "trig_const"
path = "src/lib.rs"
[[example]]
name = "std_cmp"
path = "examples/std_cmp.rs"
[[test]]
name = "brute"
path = "tests/brute.rs"
[dependencies.libm]
version = "0.2"
optional = true