From 6034e21e2531c9f03523a7b37ccb2f5b2b682657 Mon Sep 17 00:00:00 2001 From: logaritmisk Date: Mon, 14 Dec 2015 08:51:07 +0100 Subject: [PATCH] Upgrade SDL2 and SDL2 Image. --- Cargo.lock | 25 +++++++++++++++---------- Cargo.toml | 4 ++-- 2 files changed, 17 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6e740b9..717a385 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2,8 +2,8 @@ name = "super-matte-bros" version = "0.0.1" dependencies = [ - "sdl2 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sdl2_image 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sdl2 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sdl2_image 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.33 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -35,6 +35,11 @@ name = "libc" version = "0.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "libc" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "num" version = "0.1.27" @@ -61,34 +66,34 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "sdl2" -version = "0.9.1" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "num 0.1.27 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)", - "sdl2-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "sdl2-sys 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sdl2-sys" -version = "0.6.2" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "num 0.1.27 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sdl2_image" -version = "0.3.0" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "sdl2 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", - "sdl2-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "sdl2 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sdl2-sys 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 66f98ab..1964cc9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,8 +5,8 @@ authors = ["logaritmisk "] [dependencies] time = "0.1" -sdl2 = "0.9" -sdl2_image = "0.3" +sdl2 = "0.12.0" +sdl2_image = "0.6.0" [[bin]] name = "super-matte-bros"