# 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" rust-version = "1.69" name = "newton_rootfinder" version = "0.11.0" authors = ["nathan.eckert "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Newton based methods for root finding" documentation = "https://docs.rs/newton_rootfinder/" readme = "README.md" keywords = [ "Newton", "Raphson", "Root", "Rootfinder", "nrf", ] license = "MIT OR Apache-2.0" repository = "https://github.com/Nateckert/newton_rootfinder" [package.metadata.docs.rs] features = [ "xml_config_file", "additional_log_info", ] [lib] name = "newton_rootfinder" path = "src/lib.rs" [[test]] name = "lib" path = "tests/lib.rs" [[bench]] name = "broyden_case8" path = "benches/broyden_case8.rs" harness = false [[bench]] name = "dynamic_types" path = "benches/square2/dynamic_types.rs" harness = false [[bench]] name = "minimal_solver_ref" path = "benches/square2/minimal_solver_ref.rs" harness = false [[bench]] name = "static_types" path = "benches/square2/static_types.rs" harness = false [dependencies.chrono] version = "0.4" optional = true [dependencies.minidom] version = "0.12" optional = true [dependencies.nalgebra] version = "0.33" [dependencies.rustc_version_runtime] version = "0.3" optional = true [dependencies.whoami] version = "1.5" optional = true [dev-dependencies.criterion] version = "0.5" [dev-dependencies.float-cmp] version = "0.10.0" [features] additional_log_info = [ "chrono", "rustc_version_runtime", "whoami", ] xml_config_file = ["minidom"]