From 1797374640ec730e955e3f007392f651cb12b8a9 Mon Sep 17 00:00:00 2001 From: Zachary Bush Date: Sat, 10 Jan 2015 11:22:05 -0800 Subject: [PATCH] Remove features globs and phase from libgit2-sys These features have been removed: Compiling libgit2-sys v0.1.5 (https://github.com/alexcrichton/git2-rs#b22ff68b) lib.rs:1:12: 1:17 warning: feature has been added to Rust, directive not necessary lib.rs:1 #![feature(globs, phase)] ^~~~~ lib.rs:1:19: 1:24 error: feature has been removed lib.rs:1 #![feature(globs, phase)] ^~~~~ --- libgit2-sys/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/libgit2-sys/lib.rs b/libgit2-sys/lib.rs index 41fa5041b8..9339a6aa34 100644 --- a/libgit2-sys/lib.rs +++ b/libgit2-sys/lib.rs @@ -1,4 +1,3 @@ -#![feature(globs, phase)] #![allow(non_camel_case_types, missing_copy_implementations)] extern crate libc;