From 012281c35fe7c3329f4496a2bc04121ef2820735 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Jun 2024 20:23:45 -0700 Subject: [PATCH] Bump sdl2 from 0.36.0 to 0.37.0 (#68) Bumps [sdl2](https://github.com/Rust-SDL2/rust-sdl2) from 0.36.0 to 0.37.0. - [Changelog](https://github.com/Rust-SDL2/rust-sdl2/blob/master/changelog.md) - [Commits](https://github.com/Rust-SDL2/rust-sdl2/commits) --- updated-dependencies: - dependency-name: sdl2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 16 ++++++++-------- chip8-native/Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4d2fbef..b5996da 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -16,9 +16,9 @@ checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" [[package]] name = "cc" -version = "1.0.58" +version = "1.0.99" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9a06fb2e53271d7c279ec1efea6ab691c35a2ae67ec0d91d7acec0caf13b518" +checksum = "96c51067fd44124faa7f870b4b1c969379ad32b2ba805aa959430ceaa384f695" [[package]] name = "cfg-if" @@ -57,9 +57,9 @@ dependencies = [ [[package]] name = "cmake" -version = "0.1.44" +version = "0.1.50" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e56268c17a6248366d66d4a47a3381369d068cce8409bb1716ed77ea32163bb" +checksum = "a31c789563b815f77f4250caee12365734369f942439b7defd71e18a48197130" dependencies = [ "cc", ] @@ -170,9 +170,9 @@ dependencies = [ [[package]] name = "sdl2" -version = "0.36.0" +version = "0.37.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8356b2697d1ead5a34f40bcc3c5d3620205fe0c7be0a14656223bfeec0258891" +checksum = "3b498da7d14d1ad6c839729bd4ad6fc11d90a57583605f3b4df2cd709a9cd380" dependencies = [ "bitflags", "lazy_static", @@ -182,9 +182,9 @@ dependencies = [ [[package]] name = "sdl2-sys" -version = "0.36.0" +version = "0.37.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26bcacfdd45d539fb5785049feb0038a63931aa896c7763a2a12e125ec58bd29" +checksum = "951deab27af08ed9c6068b7b0d05a93c91f0a8eb16b6b816a5e73452a43521d3" dependencies = [ "cfg-if 1.0.0", "cmake", diff --git a/chip8-native/Cargo.toml b/chip8-native/Cargo.toml index 7714c5e..3480962 100644 --- a/chip8-native/Cargo.toml +++ b/chip8-native/Cargo.toml @@ -6,4 +6,4 @@ edition = "2018" [dependencies] chip8 = { path = "../chip8" } -sdl2 = { version = "0.36.0", features = [ "bundled" ] } +sdl2 = { version = "0.37.0", features = [ "bundled" ] }