Skip to content

Commit d05ceea

Browse files
feat: Export DecompressOutcome
1 parent 83791d5 commit d05ceea

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

rc-zip-cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ license = false
1515
eula = false
1616

1717
[[bin]]
18-
name = "rc-zip"
18+
name = "rc-zip-cli"
1919
path = "src/main.rs"
2020

2121
[dependencies]

rc-zip/src/fsm/entry/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -400,6 +400,7 @@ enum AnyDecompressor {
400400
Zstd(zstd_dec::ZstdDec),
401401
}
402402

403+
/// Outcome of [EntryFsm::process]
403404
#[derive(Default, Debug)]
404405
pub struct DecompressOutcome {
405406
/// Number of bytes read from input

rc-zip/src/fsm/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ mod archive;
2323
pub use archive::ArchiveFsm;
2424

2525
mod entry;
26-
pub use entry::EntryFsm;
26+
pub use entry::{DecompressOutcome, EntryFsm};
2727

2828
/// Indicates whether or not the state machine has completed its work
2929
pub enum FsmResult<M, R> {

rust-toolchain.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
2-
channel = "1.81.0"
2+
channel = "1.83.0"
33
components = ["llvm-tools", "clippy", "rust-src"]

0 commit comments

Comments
 (0)