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] [package]
name = "mini_gl_fb" name = "mini_gl_fb"
version = "0.2.4" version = "0.2.5"
authors = ["shivshank"] authors = ["shivshank"]
description = "Tool for quickly creating a window and drawing to a buffer with OpenGL" description = "Tool for quickly creating a window and drawing to a buffer with OpenGL"

View file

@ -2,7 +2,7 @@
//! //!
//! # Basic Usage //! # 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. //! that you can draw to in one line.
//! //!
//! ```rust //! ```rust
@ -68,9 +68,9 @@ pub extern crate rustic_gl;
pub extern crate glutin; pub extern crate glutin;
pub extern crate gl; pub extern crate gl;
mod config; pub mod config;
mod core; pub mod core;
mod breakout; pub mod breakout;
pub use breakout::GlutinBreakout; pub use breakout::GlutinBreakout;
pub use config::Config; pub use config::Config;