# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "float_approx_math" version = "0.1.9" description = "A math library for compile-time floating-point approximations (sqrt, sin, cos, etc...)" readme = "README.md" keywords = [ "math", "float", "const", "compile-time", "approximation", ] categories = [ "algorithms", "mathematics", ] license = "MIT" repository = "https://github.com/sigurd4/float_approx_math" [dependencies.array__ops] version = "0.1.2" optional = true [dependencies.fn_zip] version = "0.1.2" [dependencies.moddef] version = "0.2.2" [dependencies.polynomial_ops] version = "0.1.8" optional = true [dev-dependencies.array__ops] version = "0.1.1" [dev-dependencies.linspace] version = "0.1.1" [dev-dependencies.plotters] version = "0.3.5" [features] default = [ "sin", "sqrt", ] no_array_trait = ["sqrt"] sin = [ "dep:polynomial_ops", "dep:array__ops", ] sqrt = []