Expand description
This library provides a number of default FileFormat implementations
for use within singlefile.
§Features
By default, no features are enabled.
bincode: Enables theBincodefile format.bincode-serde: Enables theBincodeSerdefile format for use withserdetypes.cbor-serde: Enables theCborfile format for use withserdetypes.json-serde: Enables theJsonfile format for use withserdetypes.toml-serde: Enables theTomlfile format for use withserdetypes.bzip: Enables theBZip2compression format. SeeCompressionFormatfor more info.bzip-rust: Enables thelibbz2-rs-sysfeature forbzip2.flate: Enables theDeflate,Gz, andZLibcompression formats. SeeCompressionFormatfor more info.xz: Enables theXzcompression format. SeeCompressionFormatfor more info.
Re-exports§
pub extern crate singlefile;
Modules§
- compression
compression - Defines a compression format interface, and a
FileFormatwhich wraps anotherFileFormat, is generic over compression formats, and compresses the contents of the wrapped format. - data
- Provides a number of data formats as
FileFormats.