[package]
edition = "2024"
rust-version = "1.89"
name = "vedaksha-math"
version = "7.2.0"
authors = ["ArthIQ Labs LLC <info@arthiq.net>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Numeric primitives for Vedaksha: Chebyshev polynomials, angle arithmetic, interpolation, rotation matrices"
homepage = "https://vedaksha.net"
readme = false
keywords = [
"chebyshev",
"interpolation",
"matrix",
"angles",
"numerics",
]
categories = [
"mathematics",
"science",
]
license = "BUSL-1.1"
repository = "https://github.com/arthiqlabs/vedaksha"
resolver = "2"
[features]
default = ["std"]
std = []
[lib]
name = "vedaksha_math"
path = "src/lib.rs"
[dependencies.libm]
version = "0.2"
[dev-dependencies]
[lints.clippy]
approx_constant = "allow"
assertions_on_constants = "allow"
cast_lossless = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
collapsible_if = "allow"
doc_lazy_continuation = "allow"
doc_markdown = "allow"
double_must_use = "allow"
enum_glob_use = "allow"
excessive_precision = "allow"
explicit_iter_loop = "allow"
field_reassign_with_default = "allow"
float_cmp = "allow"
format_collect = "allow"
inconsistent_digit_grouping = "allow"
inline_always = "allow"
items_after_statements = "allow"
items_after_test_module = "allow"
manual_let_else = "allow"
manual_midpoint = "allow"
manual_range_contains = "allow"
many_single_char_names = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
no_effect_underscore_binding = "allow"
println_empty_string = "allow"
question_mark = "allow"
redundant_closure_for_method_calls = "allow"
similar_names = "allow"
single_match = "allow"
too_many_arguments = "allow"
too_many_lines = "allow"
type_complexity = "allow"
uninlined_format_args = "allow"
unnecessary_wraps = "allow"
unreadable_literal = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1