[package] name = "aberth" version = "0.4.1" edition = "2021" authors = ["ickk "] license = "MIT OR Apache-2.0 OR Zlib" readme = "README.md" include = ["src/", "LICENSE-APACHE", "LICENSE-MIT", "LICENSE-ZLIB"] description = "Aberth's method for finding the zeros of a polynomial" documentation = "https://docs.rs/aberth" repository = "https://github.com/ickk/aberth/" keywords = ["root-finding", "polynomial", "complex-numbers", "no_std"] categories = ["mathematics", "no-std"] [dependencies] arrayvec = { version = "0.7", default-features = false } num-complex = { version = "0.4", default-features = false } num-traits = { version = "0.2", default-features = false } [features] default = ["std"] std = ["num-traits/default", "num-complex/default"] # libm is required when used in a #![no_std] context libm = ["num-traits/libm", "num-complex/libm"]