Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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.
"""
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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;
```
Expand Down
Loading