payload_dumper 0.8.3

A fast and efficient Android OTA payload dumper library and CLI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2025 rhythmcache
// https://github.com/rhythmcache/payload-dumper-rust

pub mod constants;
#[cfg(feature = "remote_zip")]
pub mod http;
pub mod metadata;
pub mod payload;
#[cfg(feature = "prefetch")]
pub mod prefetch;
pub mod readers;
pub mod structs;
pub mod utils;
#[cfg(any(feature = "local_zip", feature = "remote_zip"))]
pub mod zip;