Skip to content

Commit b7d001a

Browse files
Bump rand from 0.7.3 to 0.9.3 in /engine
Bumps [rand](https://github.com/rust-random/rand) from 0.7.3 to 0.9.3. - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/0.9.3/CHANGELOG.md) - [Commits](rust-random/rand@0.7.3...0.9.3) --- updated-dependencies: - dependency-name: rand dependency-version: 0.9.3 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 0180ede commit b7d001a

6 files changed

Lines changed: 80 additions & 18 deletions

File tree

engine/Cargo.lock

Lines changed: 75 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

engine/common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ edition = "2021"
66

77
[dependencies]
88
uuid = { version = "1.2" }
9-
rand = "0.7.3"
9+
rand = "0.9.3"
1010
rand_pcg = "0.2.1"

engine/engine/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ crate-type = ["cdylib", "rlib"]
99

1010
[dependencies]
1111
wasm-bindgen = { version = "=0.2.92" }
12-
rand = "0.7"
12+
rand = "0.9"
1313
rand_pcg = "0.2.1"
1414
serde = { version = "1.0", features = ["derive"] }
1515
serde_json = "1.0"

engine/granular/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ crate-type = ["cdylib", "rlib"]
1010
[dependencies]
1111
dsp = { path = "../dsp" }
1212
common = { path = "../common", default-features = false, features = [] }
13-
rand = "0.7"
13+
rand = "0.9"
1414
hound = "3.4"

engine/noise_gen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ edition = "2021"
88
crate-type = ["cdylib", "rlib"]
99

1010
[dependencies]
11-
rand = "0.7"
11+
rand = "0.9"
1212
common = { path = "../common" }
1313
dsp = { path = "../dsp" }

engine/wavetable/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ fastapprox = "0.3"
1414
common = { path = "../common" }
1515
compressor = { path = "../compressor", default-features = false, features = []}
1616
polysynth = { path = "../polysynth", default-features = false }
17-
rand = "0.7"
17+
rand = "0.9"
1818

1919
[features]
2020
default = ["exports"]

0 commit comments

Comments
 (0)