Expand description
This crate provides the ability to extract a Conda package archive or specific parts of it.
Modules§
- fs
- Functions to extracting or stream a Conda package from a file on disk.
- read
- Functions that enable extracting or streaming a Conda package for objects that implement the
std::io::Readtrait. - reqwest
- Functionality to stream and extract packages directly from a
reqwest::Url. - seek
- Functionality to stream parts of a
.condaarchive for objects that implement bothstd::io::Readandstd::io::Seeklike astd::fs::Fileor astd::io::Cursor<T>. - tokio
- Functionality to stream and extract packages in an
tokioasync context. - write
- Functionality for writing conda packages
Structs§
- Extract
Result - Result struct returned by extraction functions.
Enums§
- Extract
Error - An error that can occur when extracting a package archive.
Traits§
- Download
Reporter - A trait that can be implemented to report download progress.