dropbox / rust-brotli

Brotli compressor and decompressor written in rust that optionally avoids the stdlib
https://dropbox.tech/infrastructure/-broccoli--syncing-faster-by-syncing-less
BSD 3-Clause "New" or "Revised" License
797 stars 83 forks source link

Switch to `use crate::` for local decl #196

Closed nyurik closed 1 month ago

nyurik commented 1 month ago

The use foo is no longer allowed when foo is part of the current crate. This has been the standard ever since 2018 edition. use crate::foo is a preferred method.