mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 12:54:11 +08:00
Summary: Bump miniz version from 2.1.0 to 3.0.2 and apply these patches: * #79636 patches internal BUCK and bazel build * #138959 adds `bool compute_crc32` argument * miniz PR: https://github.com/richgel999/miniz/pull/324 to support zip64 Anyone bumping miniz version again, please apply these patches as well. Test Plan: Rely on unit test Imported from OSS Differential Revision: D65586230 Pull Request resolved: https://github.com/pytorch/pytorch/pull/140041 Approved by: https://github.com/mikaylagawarecki
12 lines
186 B
Python
12 lines
186 B
Python
cc_library(
|
|
name = "miniz",
|
|
srcs = [
|
|
"miniz.c",
|
|
],
|
|
hdrs = [
|
|
"miniz.h",
|
|
],
|
|
strip_include_prefix = ".",
|
|
visibility = ["//visibility:public"],
|
|
)
|