diff options
author | Valentin Popov <valentin@popov.link> | 2024-07-19 15:37:58 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-07-19 15:37:58 +0300 |
commit | a990de90fe41456a23e58bd087d2f107d321f3a1 (patch) | |
tree | 15afc392522a9e85dc3332235e311b7d39352ea9 /vendor/zune-inflate/src/gzip_constants.rs | |
parent | 3d48cd3f81164bbfc1a755dc1d4a9a02f98c8ddd (diff) | |
download | fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.tar.xz fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.zip |
Deleted vendor folder
Diffstat (limited to 'vendor/zune-inflate/src/gzip_constants.rs')
-rw-r--r-- | vendor/zune-inflate/src/gzip_constants.rs | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/vendor/zune-inflate/src/gzip_constants.rs b/vendor/zune-inflate/src/gzip_constants.rs deleted file mode 100644 index 6028d47..0000000 --- a/vendor/zune-inflate/src/gzip_constants.rs +++ /dev/null @@ -1,13 +0,0 @@ -#![cfg(feature = "gzip")] -pub const GZIP_ID1: u8 = 0x1F; -pub const GZIP_ID2: u8 = 0x8B; -pub const GZIP_CM_DEFLATE: u8 = 8; - -pub const GZIP_FRESERVED: u8 = 0xE0; -pub const GZIP_FEXTRA: u8 = 0x04; - -pub const GZIP_FOOTER_SIZE: usize = 8; - -pub const GZIP_FHCRC: u8 = 0x02; -pub const GZIP_FNAME: u8 = 0x08; -pub const GZIP_FCOMMENT: u8 = 0x10; |