diff --git a/Cargo.toml b/Cargo.toml index 0f3bfa73..294d2395 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sdl2_gfx" -version = "0.0.3" +version = "0.0.33" authors = ["ShuYu Wang "] 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" diff --git a/src/sdl2_gfx/lib.rs b/src/sdl2_gfx/lib.rs index c8d2de0f..afbf7db1 100644 --- a/src/sdl2_gfx/lib.rs +++ b/src/sdl2_gfx/lib.rs @@ -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")]