Merge pull request #9 from Outfl3sh/master

bumped up versions, update to latest sdl2
This commit is contained in:
ShuYu Wang
2015-03-31 15:19:08 +08:00
2 changed files with 8 additions and 6 deletions
+7 -5
View File
@@ -1,6 +1,6 @@
[package]
name = "sdl2_gfx"
version = "0.0.3"
version = "0.0.33"
authors = ["ShuYu Wang <andelf@gmail.com>"]
description = "SDL2_gfx bindings for Rust"
homepage = "https://github.com/andelf/rust-sdl2_gfx"
@@ -15,12 +15,14 @@ path = "src/sdl2_gfx/lib.rs"
[dependencies]
c_vec = "^1.0.0"
sdl2 = "0.0.33"
sdl2-sys = "0.0.33"
[dependencies.sdl2]
git = "https://github.com/AngryLawyer/rust-sdl2/"
# [dependencies.sdl2]
# git = "https://github.com/AngryLawyer/rust-sdl2/"
[dependencies.sdl2-sys]
git = "https://github.com/AngryLawyer/rust-sdl2/"
# [dependencies.sdl2-sys]
# git = "https://github.com/AngryLawyer/rust-sdl2/"
[[bin]]
name = "demo"
+1 -1
View File
@@ -11,7 +11,7 @@ A binding for SDL2_gfx.
extern crate libc;
extern crate sdl2;
extern crate "sdl2-sys" as sys;
extern crate sdl2_sys as sys;
// Setup linking for all targets.
#[link(name="SDL2_gfx")]