Skip to content

Commit

Permalink
auto merge of #16685 : alexcrichton/rust/remove-glob, r=brson
Browse files Browse the repository at this point in the history
This library has been moved out to a cargo package in rust-lang.
  • Loading branch information
bors committed Aug 27, 2014
2 parents e61ec99 + 118f481 commit 566b470
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 212 deletions.
5 changes: 4 additions & 1 deletion src/libglob/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,16 @@
*/

#![crate_name = "glob"]
#![experimental]
#![deprecated = "This is now a cargo package located at: \
https://github.com/rust-lang/glob"]
#![crate_type = "rlib"]
#![crate_type = "dylib"]
#![license = "MIT/ASL2"]
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
html_root_url = "http://doc.rust-lang.org/master/",
html_playground_url = "http://play.rust-lang.org/")]
#![allow(deprecated)]

use std::cell::Cell;
use std::{cmp, os, path};
Expand Down Expand Up @@ -64,6 +66,7 @@ pub struct Paths {
/// `puppies.jpg` and `hamsters.gif`:
///
/// ```rust
/// # #![allow(deprecated)]
/// use glob::glob;
///
/// for path in glob("/media/pictures/*.jpg") {
Expand Down
211 changes: 0 additions & 211 deletions src/test/run-pass/glob-std.rs

This file was deleted.

0 comments on commit 566b470

Please sign in to comment.