| 1 [package] |
1 [package] |
| 2 name = "alg_tools" |
2 name = "alg_tools" |
| 3 version = "0.1.0" |
3 version = "0.3.0" |
| 4 edition = "2021" |
4 edition = "2021" |
| 5 rust-version = "1.67" |
5 rust-version = "1.85" |
| 6 authors = ["Tuomo Valkonen <tuomov@iki.fi>"] |
6 authors = ["Tuomo Valkonen <tuomov@iki.fi>"] |
| 7 description = "Utility routines for iterative numerical algorithms" |
7 description = "Utility routines for iterative numerical algorithms" |
| 8 homepage = "https://tuomov.iki.fi/software/alg_tools/" |
8 homepage = "https://tuomov.iki.fi/software/alg_tools/" |
| 9 repository = "https://tuomov.iki.fi/repos/alg_tools/" |
9 repository = "https://tuomov.iki.fi/repos/alg_tools/" |
| 10 license-file = "LICENSE" |
10 license-file = "LICENSE" |
| 11 keywords = ["iterative", "optimization", "bisection", "branch-and-bound", "numerical"] |
11 keywords = ["iterative", "optimization", "bisection", "branch-and-bound", "numerical"] |
| 12 categories = ["mathematics", "data-structures"] |
12 categories = ["mathematics", "data-structures"] |
| 13 |
13 |
| 14 [dependencies] |
14 [dependencies] |
| 15 serde = { version = "1.0", features = ["derive"] } |
15 serde = { version = "1.0", features = ["derive"] } |
| 16 csv = "~1.1.6" |
16 csv = "~1.3.1" |
| 17 nalgebra = "~0.31.0" |
17 nalgebra = "~0.33.0" |
| 18 num-traits = { version = "~0.2.14", features = ["std"] } |
18 num-traits = { version = "~0.2.14", features = ["std"] } |
| 19 colored = "~2.0.0" |
19 colored = "~2.1.0" |
| 20 trait-set = "~0.2.0" |
|
| 21 num = "~0.4.0" |
20 num = "~0.4.0" |
| 22 itertools = "~0.10.3" |
21 itertools = "~0.13.0" |
| 23 numeric_literals = "~0.2.0" |
22 numeric_literals = "~0.2.0" |
| 24 cpu-time = "~1.0.0" |
23 cpu-time = "~1.0.0" |
| 25 serde_json = "~1.0.85" |
24 serde_json = { version = "~1.0.85", features = ["std"] } |
| 26 rayon = "1.5.3" |
25 rayon = "1.5.3" |
| |
26 simba = "0.9.0" |
| |
27 anyhow = "1.0.95" |
| 27 |
28 |
| 28 [package.metadata.docs.rs] |
29 [package.metadata.docs.rs] |
| 29 rustdoc-args = [ "--html-in-header", "katex-header.html" ] |
30 rustdoc-args = [ "--html-in-header", "katex-header.html" ] |
| 30 |
31 |
| 31 |
32 |
| 32 [profile.release] |
33 [profile.release] |
| 33 debug = true |
34 debug = true |
| |
35 |
| |
36 [features] |
| |
37 default = ["nightly"] |
| |
38 use_custom_thread_pool = [] |
| |
39 nightly = [] # enable for higher-performance implementations of some things |
| |
40 |