diff options
author | Corey Farwell <coreyf@rwell.org> | 2015-02-21 18:12:32 -0500 |
---|---|---|
committer | Corey Farwell <coreyf@rwell.org> | 2015-02-21 18:18:47 -0500 |
commit | f4c9bd81bbebb0081271d5ebc763fc1aba9dad0a (patch) | |
tree | 3544e882f5120d005682378846b1691634172a3d | |
parent | accf2f3cc3b0ac11881ec8f1e225e28a8e07055d (diff) | |
download | glutin-f4c9bd81bbebb0081271d5ebc763fc1aba9dad0a.tar.gz glutin-f4c9bd81bbebb0081271d5ebc763fc1aba9dad0a.zip |
Opt into features to silence warnings
-rw-r--r-- | build.rs | 1 | ||||
-rw-r--r-- | src/lib.rs | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,5 @@ #![allow(unstable)] +#![feature(old_io,old_path,os)] extern crate gl_generator; extern crate khronos_api; @@ -1,4 +1,4 @@ -#![feature(unsafe_destructor)] +#![feature(unsafe_destructor,core,std_misc)] #![unstable] #![allow(unstable)] |