poly-cool 0.3.4

Polynomial root-finding
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"
name = "poly-cool"
version = "0.3.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Polynomial root-finding"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/jneem/poly-cool"

[features]
arbitrary = ["dep:arbitrary"]
default = ["std"]
libm = ["dep:libm"]
std = []

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

[[bench]]
name = "cubic_roots"
path = "benches/cubic_roots.rs"
harness = false

[[bench]]
name = "eval"
path = "benches/eval.rs"
harness = false

[[bench]]
name = "quadratic_roots"
path = "benches/quadratic_roots.rs"
harness = false

[dependencies.arbitrary]
version = "1.4.1"
optional = true

[dependencies.arrayvec]
version = "0.7.6"
default-features = false

[dependencies.libm]
version = "0.2.15"
optional = true

[dev-dependencies.arbitrary]
version = "1.4.1"

[dev-dependencies.arbtest]
version = "0.3.2"

[dev-dependencies.criterion]
version = "0.7.0"

[dev-dependencies.kurbo]
version = "0.11.3"

[profile.release]
debug = 2