From 2a0701263f36d5f0545d9e2f93e2fa99e0db43cd Mon Sep 17 00:00:00 2001 From: Cobrand Date: Sun, 14 May 2017 07:21:21 +0200 Subject: [PATCH] Export sdl2-sys as ::sys in sdl2 --- src/sdl2/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sdl2/lib.rs b/src/sdl2/lib.rs index 8ac6287f..3b73545d 100644 --- a/src/sdl2/lib.rs +++ b/src/sdl2/lib.rs @@ -9,7 +9,7 @@ extern crate lazy_static; #[macro_use] extern crate bitflags; -extern crate sdl2_sys as sys; +pub extern crate sdl2_sys as sys; #[cfg(feature = "gfx")] extern crate c_vec;