• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

src/H03-May-2022-1,313891

tests/H03-May-2022-279212

.cargo-checksum.jsonH A D03-May-202289 11

.gitignoreH A D22-Aug-201420 32

.travis.ymlH A D06-Mar-2016768 2524

Cargo.tomlH A D06-Mar-2016383 1613

LICENSE-APACHEH A D22-Aug-201410.6 KiB202169

LICENSE-MITH A D22-Aug-20141 KiB2622

README.mdH A D22-Sep-2015419 2515

README.md

1glob
2====
3
4Support for matching file paths against Unix shell style patterns.
5
6[![Build Status](https://travis-ci.org/rust-lang-nursery/glob.svg?branch=master)](https://travis-ci.org/rust-lang-nursery/glob)
7
8[Documentation](https://doc.rust-lang.org/glob)
9
10## Usage
11
12To use `glob`, add this to your `Cargo.toml`:
13
14```toml
15[dependencies]
16glob = "*"
17```
18
19And add this to your crate root:
20
21```rust
22extern crate glob;
23```
24
25