From 6ea483dc78383792d2ad622ba2318b79afab0b26 Mon Sep 17 00:00:00 2001 From: Bryan Bell Date: Thu, 22 Jan 2015 23:40:17 -0800 Subject: Disable compiler unstable warnings To cleanup the compiler output when building, disable warnings about using unstable crates/features. --- build.rs | 1 + src/lib.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/build.rs b/build.rs index f49b47f..9e6e181 100644 --- a/build.rs +++ b/build.rs @@ -1,3 +1,4 @@ +#![allow(unstable)] extern crate gl_generator; extern crate khronos_api; diff --git a/src/lib.rs b/src/lib.rs index 436c0cf..1b8ebce 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,6 @@ #![feature(unsafe_destructor)] #![unstable] +#![allow(unstable)] //! The purpose of this library is to provide an OpenGL context on as many //! platforms as possible. -- cgit v1.2.3