Fri, 06 Dec 2024 16:14:41 -0500
Add "nightly" feature and provide alternative low-performance implementations of several things when not available.
0 | 1 | [package] |
2 | name = "alg_tools" | |
40
daf0e3a70c79
New iteration interface, allowing for loops.
Tuomo Valkonen <tuomov@iki.fi>
parents:
26
diff
changeset
|
3 | version = "0.3.0-dev" |
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 | |
45
ad1f3705c3fc
Updates for current nightly rust
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
34 | |
ad1f3705c3fc
Updates for current nightly rust
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
35 | [features] |
ad1f3705c3fc
Updates for current nightly rust
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
36 | default = [] |
ad1f3705c3fc
Updates for current nightly rust
Tuomo Valkonen <tuomov@iki.fi>
parents:
40
diff
changeset
|
37 | use_custom_thread_pool = [] |
55
7b2ee3e84c5f
Add "nightly" feature and provide alternative low-performance implementations of several things when not available.
Tuomo Valkonen <tuomov@iki.fi>
parents:
45
diff
changeset
|
38 | nightly = [] # enable for higher-performance implementations of some things |
7b2ee3e84c5f
Add "nightly" feature and provide alternative low-performance implementations of several things when not available.
Tuomo Valkonen <tuomov@iki.fi>
parents:
45
diff
changeset
|
39 |