rust-lang / glob

Support for matching file paths against Unix shell style patterns.
http://doc.rust-lang.org/glob
Apache License 2.0
447 stars 76 forks source link

Remove "extern crate" directions from README #131

Closed zmitchell closed 1 year ago

zmitchell commented 1 year ago

You no longer need to add extern crate directives for modern Rust editions.

JohnTitor commented 1 year ago

Thanks! Our MSRV is, however, 1.23.0 and it's still needed on such an old version. Maybe we should mention it instead of just removing, like:

If you're using Rust 1.30 or earlier, or edition 2015, add this to your crate root:
zmitchell commented 1 year ago

Done