Skip to content

Commit

Permalink
Merge pull request #827 from bvssvni/master
Browse files Browse the repository at this point in the history
Fixed `pub extern` bug temporarily
  • Loading branch information
bvssvni committed Jan 29, 2015
2 parents 6cea5f6 + dd20235 commit e936fc4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "piston"
version = "0.0.2"
version = "0.0.3"
authors = [
"bvssvni <[email protected]>",
"Coeuvre <[email protected]>",
Expand Down
13 changes: 9 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,15 @@
//! A user friendly game engine written in Rust.

// Reexported crates.
pub extern crate input;
pub extern crate event;
pub extern crate window;
pub extern crate quack;
extern crate "input" as input_lib;
extern crate "event" as event_lib;
extern crate "window" as window_lib;
extern crate "quack" as quack_lib;

pub use input_lib as input;
pub use event_lib as event;
pub use window_lib as window;
pub use quack_lib as quack;

pub use event::events;

Expand Down

0 comments on commit e936fc4

Please sign in to comment.