# 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 = "root1d" version = "0.4.0" authors = ["Christophe Troestler "] build = false exclude = [ "*.org", "dune-project", "dune", "*.ml", ] autobins = false autoexamples = false autotests = false autobenches = false description = "One dimensional root finding algorithms" homepage = "https://github.com/Chris00/rust-root1d" documentation = "https://docs.rs/root1d" readme = "README.md" keywords = [ "math", "numerics", "science", "mathematics", "simulation", ] categories = [ "mathematics", "science", "no-std", ] license = "GPL-2.0-or-later" repository = "https://github.com/Chris00/rust-root1d" [lib] name = "root1d" path = "src/lib.rs" [[example]] name = "basic" path = "examples/basic.rs" required-features = ["rug"] [[example]] name = "speed" path = "examples/speed.rs" [[example]] name = "speed_toms748" path = "examples/speed_toms748.rs" [[example]] name = "speed_rug_bisect" path = "examples/speed_rug_bisect.rs" required-features = ["rug"] [[example]] name = "speed_rug_toms748" path = "examples/speed_rug_toms748.rs" required-features = ["rug"] [[example]] name = "speed_f64" path = "examples/speed_f64.rs" [[example]] name = "speed_roots" path = "examples/speed_roots.rs" [[example]] name = "x_sinx_levels" path = "examples/x_sinx_levels.rs" [[example]] name = "x_sinx_levels_par" path = "examples/x_sinx_levels_par.rs" [[bench]] name = "pbm748" path = "benches/pbm748.rs" harness = false [[bench]] name = "pbm748_neval" path = "benches/pbm748_neval.rs" harness = false required-features = ["rug"] [[bench]] name = "cbrt" path = "benches/cbrt.rs" [[bench]] name = "basic" path = "benches/basic.rs" [[bench]] name = "common" path = "benches/common.rs" [dependencies.rug] version = "1.15.0" features = [ "float", "rational", ] optional = true default-features = false [dev-dependencies.criterion] version = "0.3.5" [dev-dependencies.doc-comment] version = "0.3.3" [dev-dependencies.rand] version = "0.8.5" [dev-dependencies.rayon] version = "1.8.0" [dev-dependencies.roots] version = "0.0.7" [features] default = ["std"] nightly = [] std = []