# 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" rust-version = "1.63.0" name = "lambert_w" version = "1.0.3" authors = ["Johanna Sörngård "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Fast and accurate evaluation of the Lambert W function by the method of T. Fukushima." documentation = "https://docs.rs/lambert_w" readme = "README.md" keywords = [ "lambert-w", "product-log", "omega-function", ] categories = [ "mathematics", "no-std::no-alloc", ] license = "MIT OR Apache-2.0" repository = "https://github.com/JSorngard/lambert_w" [package.metadata.cargo-all-features] always_include_features = ["libm"] [package.metadata.docs.rs] all-features = true [profile.release-lto] lto = "fat" codegen-units = 1 panic = "abort" incremental = false inherits = "release" strip = "symbols" [lib] name = "lambert_w" path = "src/lib.rs" [[bench]] name = "fixed" path = "benches/fixed.rs" harness = false [[bench]] name = "random" path = "benches/random.rs" harness = false [dependencies.libm] version = "0.2" optional = true [dev-dependencies.approx] version = "0.5.1" default-features = false [dev-dependencies.criterion] version = "0.5.1" features = ["html_reports"] [dev-dependencies.rand] version = "0.8.5" features = ["small_rng"] default-features = false [features] default = ["libm"] libm = ["dep:libm"] std = []