commit | 5d94bfcd79d9c0e2639b09201b1d3a153ad23a6f | [log] [tgz] |
---|---|---|
author | Jooyung Han <jooyung@google.com> | Fri Aug 06 14:07:49 2021 +0900 |
committer | Jooyung Han <jooyung@google.com> | Tue Aug 10 03:11:30 2021 +0900 |
tree | 9bf2ce8b2423842c7295d906ee407d707727fbbf | |
parent | 12a0b70ca61e8e6344454666b17f5c0eebb6a42e [diff] [blame] |
apkverify: add ziputil apkverify doesn't need all zip features. ziputil provides zip_sections() to discover the layout of a zip file. Bug: 190343842 Test: cargo test Change-Id: Ib6354828cebe819fd3f48265089815ccf29f18ea
diff --git a/apkverify/src/lib.rs b/apkverify/src/lib.rs index 9ea0e14..9930099 100644 --- a/apkverify/src/lib.rs +++ b/apkverify/src/lib.rs
@@ -19,6 +19,7 @@ mod bytes_ext; mod sigutil; mod v3; +mod ziputil; use anyhow::Result; use std::path::Path;