@@ -4,7 +4,10 @@ name = "ndarray"
44version = " 0.17.2"
55edition = " 2021"
66rust-version = " 1.64"
7- authors = [" Ulrik Sverdrup \" bluss\" " , " Jim Turner" ]
7+ authors = [
8+ " Ulrik Sverdrup \" bluss\" " ,
9+ " Jim Turner"
10+ ]
811license = " MIT OR Apache-2.0"
912readme = " README-crates.io.md"
1013
@@ -17,12 +20,12 @@ keywords = ["array", "data-structure", "multidimensional", "matrix", "blas"]
1720categories = [" data-structures" , " science" ]
1821
1922include = [
20- " /src/**/*.rs" ,
21- " LICENSE-MIT" ,
22- " LICENSE-APACHE" ,
23- " RELEASES.md" ,
24- " README.rst" ,
25- " README-quick-start.md" ,
23+ " /src/**/*.rs" ,
24+ " LICENSE-MIT" ,
25+ " LICENSE-APACHE" ,
26+ " RELEASES.md" ,
27+ " README.rst" ,
28+ " README-quick-start.md"
2629]
2730resolver = " 2"
2831
@@ -43,13 +46,9 @@ rayon = { version = "1.10.0", optional = true }
4346cblas-sys = { workspace = true , optional = true }
4447libc = { version = " 0.2.82" , optional = true }
4548
46- matrixmultiply = { version = " 0.3.2" , default-features = false , features = [
47- " cgemm" ,
48- ] }
49+ matrixmultiply = { version = " 0.3.2" , default-features = false , features =[" cgemm" ] }
4950
50- serde = { version = " 1.0" , optional = true , default-features = false , features = [
51- " alloc" ,
52- ] }
51+ serde = { version = " 1.0" , optional = true , default-features = false , features = [" alloc" ] }
5352rawpointer = { version = " 0.2" }
5453
5554[dev-dependencies ]
@@ -78,17 +77,20 @@ portable-atomic-critical-section = ["portable-atomic/critical-section"]
7877
7978[target .'cfg(not(target_has_atomic = "ptr"))' .dependencies ]
8079portable-atomic = { version = " 1.6.0" }
81- portable-atomic-util = { version = " 0.2.0" , features = [" alloc" ] }
80+ portable-atomic-util = { version = " 0.2.0" , features = [ " alloc" ] }
8281
8382[workspace ]
84- members = [" ndarray-rand" , " crates/*" ]
83+ members = [
84+ " ndarray-rand" ,
85+ " crates/*" ,
86+ ]
8587default-members = [
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
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
9294]
9395
9496[workspace .dependencies ]
@@ -103,9 +105,7 @@ approx = { version = "0.5", default-features = false }
103105quickcheck = { version = " 1.0" , default-features = false }
104106rand = { version = " 0.9.0" , features = [" small_rng" ] }
105107rand_distr = { version = " 0.5.0" }
106- itertools = { version = " 0.13.0" , default-features = false , features = [
107- " use_std" ,
108- ] }
108+ itertools = { version = " 0.13.0" , default-features = false , features = [" use_std" ] }
109109cblas-sys = { version = " 0.1.4" , default-features = false }
110110
111111[profile .bench ]
0 commit comments