diff --git a/Cargo.toml b/Cargo.toml index 7eb57cc..66a03e4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,12 +1,11 @@ [package] - name = "glob" version = "0.3.2" authors = ["The Rust Project Developers"] license = "MIT OR Apache-2.0" homepage = "https://github.com/rust-lang/glob" repository = "https://github.com/rust-lang/glob" -documentation = "https://docs.rs/glob/0.3.1" +documentation = "https://docs.rs/glob" description = """ Support for matching file paths against Unix shell style patterns. """ diff --git a/README.md b/README.md index 36302ee..3ad9ff8 100644 --- a/README.md +++ b/README.md @@ -13,10 +13,11 @@ To use `glob`, add this to your `Cargo.toml`: ```toml [dependencies] -glob = "0.3.1" +glob = "0.3.2" ``` If you're using Rust 1.30 or earlier, or edition 2015, add this to your crate root: + ```rust extern crate glob; ```