rust-secure-code / cargo-supply-chain

Gather author, contributor and publisher data on crates in your dependency graph.
Apache License 2.0
315 stars 18 forks source link

Cached data dumps #14

Closed HeroicKatora closed 3 years ago

HeroicKatora commented 3 years ago

Follow up to #12 .

The cached data will now be considered expired if it is older than a day as indicated by the metadata or invalid if the metadata simply does not exist. Also switched the gzip decoder to miniz_oxide-based flate2.

Shnatsel commented 3 years ago

So apparently flate2 doesn't change performance at all by itself compared to libflate, but switching to zlib backend boosts performance 10x. WTF?

Shnatsel commented 3 years ago

And thanks!