Tue, 20 Feb 2024 12:33:16 -0500
Logarithmic logging base correction
0 | 1 | [package] |
2 | name = "alg_tools" | |
3 | version = "0.1.0" | |
4 | edition = "2021" | |
21
62bdbff9a288
Add rust-version specification to Cargo.toml
Tuomo Valkonen <tuomov@iki.fi>
parents:
12
diff
changeset
|
5 | rust-version = "1.67" |
0 | 6 | authors = ["Tuomo Valkonen <tuomov@iki.fi>"] |
10 | 7 | description = "Utility routines for iterative numerical algorithms" |
8 | homepage = "https://tuomov.iki.fi/software/alg_tools/" | |
9 | repository = "https://tuomov.iki.fi/repos/alg_tools/" | |
10 | license-file = "LICENSE" | |
12
3297d14c7bff
Add some keywords and categories
Tuomo Valkonen <tuomov@iki.fi>
parents:
10
diff
changeset
|
11 | keywords = ["iterative", "optimization", "bisection", "branch-and-bound", "numerical"] |
3297d14c7bff
Add some keywords and categories
Tuomo Valkonen <tuomov@iki.fi>
parents:
10
diff
changeset
|
12 | categories = ["mathematics", "data-structures"] |
0 | 13 | |
14 | [dependencies] | |
15 | serde = { version = "1.0", features = ["derive"] } | |
16 | csv = "~1.1.6" | |
17 | nalgebra = "~0.31.0" | |
18 | num-traits = { version = "~0.2.14", features = ["std"] } | |
19 | colored = "~2.0.0" | |
20 | trait-set = "~0.2.0" | |
21 | num = "~0.4.0" | |
22 | itertools = "~0.10.3" | |
23 | numeric_literals = "~0.2.0" | |
24 | cpu-time = "~1.0.0" | |
25 | serde_json = "~1.0.85" | |
8
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
26 | rayon = "1.5.3" |
0 | 27 | |
28 | [package.metadata.docs.rs] | |
29 | rustdoc-args = [ "--html-in-header", "katex-header.html" ] | |
30 | ||
31 | ||
32 | [profile.release] | |
33 | debug = true |