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

Remove executable flag from .rs files #181

Closed nyurik closed 2 months ago

nyurik commented 2 months ago

Ran these commands:

find src -type f -executable -exec chmod -x {} +
find c/src -type f -executable -exec chmod -x {} +

It's a bad security practice to allow non-executable files to have execute permission

This replaces #40