From 65c15a4fa4fe3051b94680981b5f76c2c00030c4 Mon Sep 17 00:00:00 2001 From: Manorhos Date: Fri, 15 Jan 2016 16:53:25 +0100 Subject: [PATCH] Update Cargo.toml: Bump sdl2 to version 0.13 Apparently there is no version 0.12.2 anymore, so with the toml requesting 0.12, 0.12.1 was used which required sdl2-sys 0.7. That conflicted with this crate requiring sdl2-sys 0.8. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 181d71f2..f4dc80fa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,6 +16,6 @@ path = "src/sdl2_gfx/lib.rs" [dependencies] num = "0.1" libc = "0.1" -sdl2 = "0.12" +sdl2 = "0.13" sdl2-sys = "0.8" c_vec = "1.0.*"