-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
53 lines (44 loc) · 1.41 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "newton_rootfinder"
rust-version = "1.69"
version = "0.11.0"
authors = ["nathan.eckert <nathan.eckert@polytechnique.edu>"]
edition = "2021"
description = "Newton based methods for root finding"
repository = "https://github.com/Nateckert/newton_rootfinder"
documentation = "https://docs.rs/newton_rootfinder/"
readme = "README.md"
keywords = ["Newton", "Raphson", "Root", "Rootfinder", "nrf"]
license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dev-dependencies]
float-cmp = "0.10.0"
criterion = "0.5"
util = { path = "./util" }
[[bench]]
path = "benches/square2/minimal_solver_ref.rs"
name = "minimal_solver_ref"
harness = false
[[bench]]
path = "benches/square2/dynamic_types.rs"
name = "dynamic_types"
harness = false
[[bench]]
path = "benches/square2/static_types.rs"
name = "static_types"
harness = false
[[bench]]
name = "broyden_case8"
harness = false
[dependencies]
nalgebra = "0.33"
minidom = { version = "0.12", optional = true }
whoami = { version = "1.5", optional = true }
rustc_version_runtime = { version = "0.3", optional = true }
chrono = { version = "0.4", optional = true }
[features]
additional_log_info = ["chrono", "rustc_version_runtime", "whoami"]
xml_config_file = ["minidom"]
[package.metadata.docs.rs]
# Enable certain features when building docs for docs.rs
features = ["xml_config_file", "additional_log_info"]