From d2ce2c373a8e9d5c120fe1fbf40f122a7c460c2f Mon Sep 17 00:00:00 2001 From: Cobrand Date: Fri, 2 Apr 2021 21:15:46 +0200 Subject: [PATCH] Update to 0.34.4 --- Cargo.toml | 19 ++++++++++--------- sdl2-sys/Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3d02c647..25d9c6ba 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,23 +15,24 @@ name = "sdl2" path = "src/sdl2/lib.rs" [dependencies] -bitflags = "^1" -libc = "^0.2" -lazy_static = "^1" +bitflags = "1.2.1" +libc = "0.2.92" +lazy_static = "1.4.0" [dependencies.sdl2-sys] path = "sdl2-sys" -version = "^0.34.2" +version = "^0.34.4" [dependencies.c_vec] -version = ">= 1.0, <= 1.3" +# allow both 1.* and 2.0 versions +version = ">= 1.0" optional = true [dev-dependencies] -rand = "^0.7" -wgpu = "^0.5.0" -glsl-to-spirv = "^0.1.7" -futures = "^0.3" +rand = "0.8.3" +wgpu = "0.7.1" +glsl-to-spirv = "0.1.7" +futures = "0.3.13" [dependencies.raw-window-handle] version = "0.3.3" diff --git a/sdl2-sys/Cargo.toml b/sdl2-sys/Cargo.toml index d2bd1ef3..3f980ab6 100644 --- a/sdl2-sys/Cargo.toml +++ b/sdl2-sys/Cargo.toml @@ -3,7 +3,7 @@ name = "sdl2-sys" description = "Raw SDL2 bindings for Rust, used internally rust-sdl2" repository = "https://github.com/rust-sdl2/rust-sdl2" -version = "0.34.3" +version = "0.34.4" authors = ["Tony Aldridge "] keywords = ["SDL", "windowing", "graphics", "ffi"] categories = ["rendering","external-ffi-bindings","game-engines","multimedia"]