mirror of
https://github.com/encounter/rust-sdl2.git
synced 2026-07-10 21:18:41 -07:00
Revert "Change to underscores from hyphens"
This commit is contained in:
+4
-4
@@ -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
@@ -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
@@ -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
@@ -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::*;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user