Skip to content

Commit 42f80f7

Browse files
committed
Add stability features.
1 parent df456fd commit 42f80f7

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@
2323
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
2424
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
2525
html_root_url = "http://doc.rust-lang.org/glob/")]
26-
#![allow(unstable)]
2726
#![cfg_attr(test, deny(warnings))]
27+
#![cfg_attr(test, feature(os))]
28+
#![feature(path, io, core, collections, hash, std_misc, unicode)]
2829

2930
use std::ascii::AsciiExt;
3031
use std::cell::Cell;

tests/glob-std.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// except according to those terms.
1010

1111
// ignore-windows TempDir may cause IoError on windows: #10462
12+
#![feature(path, os, io)]
1213

1314
extern crate glob;
1415

0 commit comments

Comments
 (0)