mirror of
https://github.com/italicsjenga/mini_gl_fb.git
synced 2024-11-22 07:21:30 +11:00
Fix broken export
This commit is contained in:
parent
54af8986ab
commit
16e1c25e31
|
@ -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"
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue