# 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 = "aberth" version = "0.4.1" authors = ["ickk "] include = [ "src/", "LICENSE-APACHE", "LICENSE-MIT", "LICENSE-ZLIB", ] description = "Aberth's method for finding the zeros of a polynomial" documentation = "https://docs.rs/aberth" readme = "README.md" keywords = [ "root-finding", "polynomial", "complex-numbers", "no_std", ] categories = [ "mathematics", "no-std", ] license = "MIT OR Apache-2.0 OR Zlib" repository = "https://github.com/ickk/aberth/" [dependencies.arrayvec] version = "0.7" default-features = false [dependencies.num-complex] version = "0.4" default-features = false [dependencies.num-traits] version = "0.2" default-features = false [features] default = ["std"] libm = [ "num-traits/libm", "num-complex/libm", ] std = [ "num-traits/default", "num-complex/default", ]