@@ -4,10 +4,7 @@ name = "ndarray"
44version = " 0.17.2"
55edition = " 2021"
66rust-version = " 1.64"
7- authors = [
8- " Ulrik Sverdrup \" bluss\" " ,
9- " Jim Turner"
10- ]
7+ authors = [" Ulrik Sverdrup \" bluss\" " , " Jim Turner" ]
118license = " MIT OR Apache-2.0"
129readme = " README-crates.io.md"
1310
@@ -20,12 +17,12 @@ keywords = ["array", "data-structure", "multidimensional", "matrix", "blas"]
2017categories = [" data-structures" , " science" ]
2118
2219include = [
23- " /src/**/*.rs" ,
24- " LICENSE-MIT" ,
25- " LICENSE-APACHE" ,
26- " RELEASES.md" ,
27- " README.rst" ,
28- " README-quick-start.md"
20+ " /src/**/*.rs" ,
21+ " LICENSE-MIT" ,
22+ " LICENSE-APACHE" ,
23+ " RELEASES.md" ,
24+ " README.rst" ,
25+ " README-quick-start.md" ,
2926]
3027resolver = " 2"
3128
@@ -46,9 +43,13 @@ rayon = { version = "1.10.0", optional = true }
4643cblas-sys = { workspace = true , optional = true }
4744libc = { version = " 0.2.82" , optional = true }
4845
49- matrixmultiply = { version = " 0.3.2" , default-features = false , features =[" cgemm" ] }
46+ matrixmultiply = { version = " 0.3.2" , default-features = false , features = [
47+ " cgemm" ,
48+ ] }
5049
51- serde = { version = " 1.0" , optional = true , default-features = false , features = [" alloc" ] }
50+ serde = { version = " 1.0" , optional = true , default-features = false , features = [
51+ " alloc" ,
52+ ] }
5253rawpointer = { version = " 0.2" }
5354
5455[dev-dependencies ]
@@ -77,20 +78,17 @@ portable-atomic-critical-section = ["portable-atomic/critical-section"]
7778
7879[target .'cfg(not(target_has_atomic = "ptr"))' .dependencies ]
7980portable-atomic = { version = " 1.6.0" }
80- portable-atomic-util = { version = " 0.2.0" , features = [ " alloc" ] }
81+ portable-atomic-util = { version = " 0.2.0" , features = [" alloc" ] }
8182
8283[workspace ]
83- members = [
84- " ndarray-rand" ,
85- " crates/*" ,
86- ]
84+ members = [" ndarray-rand" , " crates/*" ]
8785default-members = [
88- " ." ,
89- " ndarray-rand" ,
90- " crates/ndarray-gen" ,
91- " crates/numeric-tests" ,
92- " crates/serialization-tests" ,
93- # exclude blas-tests and blas-mock-tests that activate "blas" feature
86+ " ." ,
87+ " ndarray-rand" ,
88+ " crates/ndarray-gen" ,
89+ " crates/numeric-tests" ,
90+ " crates/serialization-tests" ,
91+ # exclude blas-tests and blas-mock-tests that activate "blas" feature
9492]
9593
9694[workspace .dependencies ]
@@ -105,7 +103,9 @@ approx = { version = "0.5", default-features = false }
105103quickcheck = { version = " 1.0" , default-features = false }
106104rand = { version = " 0.9.0" , features = [" small_rng" ] }
107105rand_distr = { version = " 0.5.0" }
108- itertools = { version = " 0.13.0" , default-features = false , features = [" use_std" ] }
106+ itertools = { version = " 0.13.0" , default-features = false , features = [
107+ " use_std" ,
108+ ] }
109109cblas-sys = { version = " 0.1.4" , default-features = false }
110110
111111[profile .bench ]
0 commit comments