diff options
author | tomaka <pierre.krieger1708@gmail.com> | 2015-04-03 09:57:04 +0200 |
---|---|---|
committer | tomaka <pierre.krieger1708@gmail.com> | 2015-04-03 09:57:04 +0200 |
commit | b13b39728638d847d57871ab11ee6b1200b8a23c (patch) | |
tree | b35fe22f55ef94a02ab01bf6f5271407ce4ad204 /src/lib.rs | |
parent | 1c74614c4ace993e655e18dafdeb9d5ceef9ea06 (diff) | |
parent | 0f7bd9071e9b64acb9f13e253d49c3790e50d560 (diff) | |
download | glutin-b13b39728638d847d57871ab11ee6b1200b8a23c.tar.gz glutin-b13b39728638d847d57871ab11ee6b1200b8a23c.zip |
Merge pull request #351 from tomaka/rustup
Remove all features for 1.0 beta
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,6 +1,3 @@ -#![feature(collections, unsafe_destructor, core, std_misc, alloc)] -#![unstable] - //! The purpose of this library is to provide an OpenGL context on as many //! platforms as possible. //! @@ -26,6 +23,9 @@ //! //! By default only `window` is enabled. +#[macro_use] +extern crate lazy_static; + extern crate gl_common; extern crate libc; |