From 16e1c25e3152df5b95813402d48d93cb0b055952 Mon Sep 17 00:00:00 2001 From: shivshank Date: Fri, 27 Jul 2018 17:16:38 -0400 Subject: [PATCH] Fix broken export --- Cargo.toml | 2 +- src/lib.rs | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c93b804..3599f35 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mini_gl_fb" -version = "0.2.4" +version = "0.2.5" authors = ["shivshank"] description = "Tool for quickly creating a window and drawing to a buffer with OpenGL" diff --git a/src/lib.rs b/src/lib.rs index 2f65ba7..1bcab3a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2,7 +2,7 @@ //! //! # Basic Usage //! -//! Start with the function `gotta_go_fast.` This will create a basic window and give you a buffer +//! Start with the function `gotta_go_fast`. This will create a basic window and give you a buffer //! that you can draw to in one line. //! //! ```rust @@ -68,9 +68,9 @@ pub extern crate rustic_gl; pub extern crate glutin; pub extern crate gl; -mod config; -mod core; -mod breakout; +pub mod config; +pub mod core; +pub mod breakout; pub use breakout::GlutinBreakout; pub use config::Config;