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