Skip to content

Commit 8d587fc

Browse files
authored
Merge pull request #400 from sparsemat/bump-rand
Bump rand and deps
2 parents 6447004 + 202e588 commit 8d587fc

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

sprs-benches/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition.workspace = true
88

99
[dependencies]
1010
sprs = { 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" }
1212
plotters = "0.3.4"
1313
pyo3 = { version = "0.28.0", features = ["auto-initialize"] }
1414

sprs-rand/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[package]
22
name = "sprs-rand"
33
description = "Random sparse matrix generation"
4-
version = "0.4.0"
4+
version = "0.5.0"
55
authors = ["Vincent Barrielle <vincent.barrielle@m4x.org>"]
66
documentation = "https://docs.rs/sprs-rand"
77
rust-version.workspace = true
88
license.workspace = true
99
edition.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"
1515
sprs = { version = "0.11.0", path = "../sprs" }

sprs-rand/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
33
use crate::rand::distr::Distribution;
44
use crate::rand::Rng;
5+
use crate::rand::RngExt;
56
use crate::rand::SeedableRng;
67
use sprs::indexing::SpIndex;
78
use sprs::{CsMat, CsMatI};

0 commit comments

Comments
 (0)