1pub mod compression;
2mod other;
3
4pub use other::*;
5#[cfg(feature = "cloud")]
6pub mod byte_source;
7pub mod file;
8pub mod slice;
9
10pub const URL_ENCODE_CHAR_SET: &percent_encoding::AsciiSet = &percent_encoding::CONTROLS
11 .add(b'/')
12 .add(b'=')
13 .add(b':')
14 .add(b' ')
15 .add(b'%');