| 1 [package] |
1 [package] |
| 2 name = "alg_tools" |
2 name = "alg_tools" |
| 3 version = "0.3.0" |
3 version = "0.4.0-dev" |
| 4 edition = "2021" |
4 edition = "2021" |
| 5 rust-version = "1.85" |
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 = [ |
| |
12 "iterative", |
| |
13 "optimization", |
| |
14 "bisection", |
| |
15 "branch-and-bound", |
| |
16 "numerical", |
| |
17 ] |
| 12 categories = ["mathematics", "data-structures"] |
18 categories = ["mathematics", "data-structures"] |
| 13 |
19 |
| 14 [dependencies] |
20 [dependencies] |
| 15 serde = { version = "1.0", features = ["derive"] } |
21 serde = { version = "1.0", features = ["derive"] } |
| 16 csv = "~1.3.1" |
22 csv = "~1.3.1" |