lambert_w 2.0.0

Fast and accurate evaluation of the Lambert W function by the method of T. Fukushima.
Documentation
# 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 = "2.0.0"
authors = ["Johanna Sörngård <jsorngard@gmail.com>"]
build = false
exclude = [
    "tests/",
    ".github/",
    "CONTRIBUTING.md",
    "CHANGELOG.md",
    "benches",
    "examples",
]
autolib = 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-std::no-alloc",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/JSorngard/lambert_w"

[package.metadata.docs.rs]
all-features = true

[package.metadata.cargo-all-features]
always_include_features = ["libm"]

[features]
default = ["libm"]
libm = [
    "num-traits/libm",
    "num-complex/libm",
]
std = [
    "num-traits/std",
    "num-complex/std",
]

[lib]
name = "lambert_w"
path = "src/lib.rs"

[dependencies.num-complex]
version = "0.4.6"
default-features = false

[dependencies.num-traits]
version = "0.2.19"
default-features = false

[dev-dependencies.approx]
version = "0.5.1"
default-features = false

[dev-dependencies.criterion]
version = "0.8.2"
features = ["html_reports"]

[dev-dependencies.plotters]
version = "0.3.7"
features = [
    "bitmap_encoder",
    "bitmap_backend",
    "ttf",
]
default-features = false

[dev-dependencies.rand]
version = "0.10.0"
default-features = false

[lints.rust]
missing_docs = "warn"

[profile.release-lto]
lto = "fat"
codegen-units = 1
panic = "abort"
inherits = "release"