Cargo.toml

branch
dev
changeset 95
9cb8225a3a41
parent 93
123f7f38e161
child 98
2e4517b55442
equal deleted inserted replaced
89:8513a10c5dd9 95:9cb8225a3a41
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"
25 rayon = "1.5.3" 31 rayon = "1.5.3"
26 simba = "0.9.0" 32 simba = "0.9.0"
27 anyhow = "1.0.95" 33 anyhow = "1.0.95"
28 34
29 [package.metadata.docs.rs] 35 [package.metadata.docs.rs]
30 rustdoc-args = [ "--html-in-header", "katex-header.html" ] 36 rustdoc-args = ["--html-in-header", "katex-header.html"]
31 37
32 38
33 [profile.release] 39 [profile.release]
34 debug = true 40 debug = true
35 41
36 [features] 42 [features]
37 default = ["nightly"] 43 default = ["nightly"]
38 use_custom_thread_pool = [] 44 use_custom_thread_pool = []
39 nightly = [] # enable for higher-performance implementations of some things 45 nightly = [] # enable for higher-performance implementations of some things
40

mercurial