From 896c8b11af59d3ab6039ee8f55c51bf2b627c819 Mon Sep 17 00:00:00 2001 From: Pierre Krieger Date: Fri, 13 Mar 2015 10:21:27 +0100 Subject: Switch to new I/O in build.rs --- Cargo.toml | 2 +- build.rs | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c228f83..af7e024 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "glutin" -version = "0.0.7" +version = "0.0.8" authors = ["tomaka "] description = "Cross-plaform OpenGL context provider. Important: the crates.io only supports Windows and Linux for the moment." keywords = ["windowing", "opengl"] diff --git a/build.rs b/build.rs index f3b1794..867e170 100644 --- a/build.rs +++ b/build.rs @@ -1,13 +1,14 @@ -#![feature(old_io,old_path,os)] +#![feature(path)] extern crate gl_generator; extern crate khronos_api; use std::env; -use std::old_io::File; +use std::fs::File; +use std::path::PathBuf; fn main() { let target = env::var("TARGET").unwrap(); - let dest = Path::new(env::var("OUT_DIR").unwrap()); + let dest = PathBuf::new(&env::var("OUT_DIR").unwrap()); if target.contains("windows") { let mut file = File::create(&dest.join("wgl_bindings.rs")).unwrap(); -- cgit v1.2.3