[package]
edition = "2024"
rust-version = "1.95.0"
name = "use-numerical"
version = "0.0.6"
authors = ["RustUse Contributors"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Utility-first approximate numerical helpers for RustUse"
homepage = "https://github.com/RustUse/use-math"
documentation = "https://docs.rs/use-numerical"
readme = "README.md"
keywords = [
"math",
"numerical",
"approximation",
"integration",
"roots",
]
categories = [
"mathematics",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/RustUse/use-math"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
[features]
default = []
interval = ["dep:use-interval"]
[lib]
name = "use_numerical"
path = "src/lib.rs"
[dependencies.use-interval]
version = "0.0.6"
optional = true
[lints.clippy]
expect_used = "warn"
multiple_crate_versions = "allow"
todo = "deny"
unimplemented = "deny"
unwrap_used = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1