Cargo.toml

changeset 94
1f19c6bbf07b
parent 93
123f7f38e161
equal deleted inserted replaced
93:123f7f38e161 94:1f19c6bbf07b
1 [package] 1 [package]
2 name = "alg_tools" 2 name = "alg_tools"
3 version = "0.3.1" 3 version = "0.3.2"
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/"
38 38
39 [profile.release] 39 [profile.release]
40 debug = true 40 debug = true
41 41
42 [features] 42 [features]
43 default = ["nightly"] 43 default = []
44 use_custom_thread_pool = [] 44 use_custom_thread_pool = []
45 nightly = [] # enable for higher-performance implementations of some things 45 # The nightly feature enables some additional features.
46 # Nightly-based optimisations are decided automatically by build.rs.
47 nightly = []
48
49 [build-dependencies]
50 rustc_version = "0.4"

mercurial