[package]
edition = "2024"
name = "trig"
version = "0.3.1"
authors = ["Tamas Kis"]
build = false
exclude = [
".github/",
".vscode/",
"book/",
".gitignore",
"Cargo.lock",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Complete set of trigonometric and hyperbolic functions in Rust."
documentation = "https://docs.rs/trig"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/tamaskis/trig"
[package.metadata.docs.rs]
rustdoc-args = [
"--html-in-header",
"src/docs-header.html",
]
[lib]
name = "trig"
path = "src/lib.rs"
[dev-dependencies.numtest]
version = "0.4.1"