complex-bessel 0.1.0

Pure Rust implementation of complex Bessel functions (J, Y, I, K, H, Airy) based on Amos Algorithm 644
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 = "2024"
rust-version = "1.85"
name = "complex-bessel"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust implementation of complex Bessel functions (J, Y, I, K, H, Airy) based on Amos Algorithm 644"
readme = "README.md"
keywords = [
    "bessel",
    "complex",
    "special-functions",
    "mathematics",
    "no-std",
]
categories = [
    "mathematics",
    "science",
    "no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/elgar328/complex-bessel"

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

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

[[example]]
name = "basic"
path = "examples/basic.rs"
required-features = ["alloc"]

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

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