Fix broken export

This commit is contained in:
shivshank 2018-07-27 17:16:38 -04:00
parent 54af8986ab
commit 16e1c25e31
2 changed files with 5 additions and 5 deletions

View file

@ -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"

View file

@ -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;