-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
24 lines (22 loc) · 866 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "aberth"
version = "0.4.1"
edition = "2021"
authors = ["ickk <crates@ickk.io>"]
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"]