Cargo.toml

changeset 93
123f7f38e161
parent 92
e11986179a4b
equal deleted inserted replaced
92:e11986179a4b 93:123f7f38e161
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