File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ edition.workspace = true
88
99[dependencies ]
1010sprs = { version = " 0.11.0" , path = " ../sprs" }
11- sprs-rand = { version = " 0.4 .0" , path = " ../sprs-rand" }
11+ sprs-rand = { version = " 0.5 .0" , path = " ../sprs-rand" }
1212plotters = " 0.3.4"
1313pyo3 = { version = " 0.28.0" , features = [" auto-initialize" ] }
1414
Original file line number Diff line number Diff line change 11[package ]
22name = " sprs-rand"
33description = " Random sparse matrix generation"
4- version = " 0.4 .0"
4+ version = " 0.5 .0"
55authors = [" Vincent Barrielle <vincent.barrielle@m4x.org>" ]
66documentation = " https://docs.rs/sprs-rand"
77rust-version.workspace = true
88license.workspace = true
99edition.workspace = true
1010
1111[dependencies ]
12- rand = " 0.9 .0"
13- rand_distr = " 0.5 .0"
14- rand_pcg = " 0.9 .0"
12+ rand = " 0.10 .0"
13+ rand_distr = " 0.6 .0"
14+ rand_pcg = " 0.10 .0"
1515sprs = { version = " 0.11.0" , path = " ../sprs" }
Original file line number Diff line number Diff line change 22
33use crate :: rand:: distr:: Distribution ;
44use crate :: rand:: Rng ;
5+ use crate :: rand:: RngExt ;
56use crate :: rand:: SeedableRng ;
67use sprs:: indexing:: SpIndex ;
78use sprs:: { CsMat , CsMatI } ;
You can’t perform that action at this time.
0 commit comments