Revert "Change to underscores from hyphens"

This commit is contained in:
Sven Nilsen
2015-03-25 21:02:34 +01:00
parent 94ec8676fd
commit 0210f2c819
4 changed files with 9 additions and 9 deletions
+4 -4
View File
@@ -3,7 +3,7 @@
name = "sdl2"
description = "SDL2 bindings for Rust"
repository = "https://github.com/AngryLawyer/rust-sdl2"
version = "0.0.33"
version = "0.0.32"
license = "MIT"
authors = [ "Tony Aldridge <tony@angry-lawyer.com>" ]
keywords = ["SDL", "windowing", "graphics"]
@@ -18,12 +18,12 @@ bitflags = "0.1"
libc = "*"
rand = "*"
[dependencies.sdl2_sys]
[dependencies.sdl2-sys]
path = "sdl2-sys"
version = "0.0.33"
version = "0.0.32"
[features]
default = []
use-pkgconfig = [ "sdl2_sys/use-pkgconfig" ]
use-pkgconfig = [ "sdl2-sys/use-pkgconfig" ]
+3 -3
View File
@@ -1,16 +1,16 @@
[package]
name = "sdl2_sys"
name = "sdl2-sys"
description = "Raw SDL2 bindings for Rust, used internally rust-sdl2"
repository = "https://github.com/AngryLawyer/rust-sdl2"
version = "0.0.33"
version = "0.0.32"
authors = ["Tony Aldridge <tony@angry-lawyer.com>"]
license = "MIT"
links = "SDL2"
build = "build.rs"
[lib]
name = "sdl2_sys"
name = "sdl2-sys"
path = "src/lib.rs"
[dependencies]
+1 -1
View File
@@ -1,5 +1,5 @@
#[cfg(feature="pkg-config")]
extern crate pkg_config;
extern crate "pkg-config" as pkg_config;
fn main() {
if !build_pkgconfig() {
+1 -1
View File
@@ -6,7 +6,7 @@
extern crate libc;
#[macro_use]
extern crate bitflags;
extern crate sdl2_sys as sys;
extern crate "sdl2-sys" as sys;
pub use sdl::*;