We want to improve build times by reducing download and extraction times. This makes the ecosystem more approachable to people or regions with slow internet and thus is very relevant for inclusiveness and for extending Rusts reach.
This is facilitated by three means:
As the first part of The Lean Crate Initiative, this report provides the data needed to see if this is a problem worth solving in the first place. And as of 2020-03-18, initial numbers show that out of 147GB of uncompressed crates data, 59GB or 40% are most probably not required to build a crate.
The report operates on the following assumptions:
From these assumptions, some conclusions can be drawn. There is no need for…
Based on these assumptions and conclusions, The Criner Waste Report computes a suggestions for new include
or exclude
directives which prevent
unnecessary data to be put into the crate archive.
Due to the way Cargo handles these directives, include
directives are deemed most powerful in the persuit of keeping the amount of patterns small, using
negative patterns where needed. Thus these will be recommended whenever feasible.
This part of the initiative is still under heavy development, but available as ugly alpha.
Apologies, the term was proposed by the marketing department who believed that 'The Criner Waste Report' will do better than 'The Criner Report of files you do not need to build a crate'.
The author does shame crates that are bigger than they probably have to be, and is happy to help get your crate off the index. Some files listed are certainly false positivies due to [limitations], read on in this FAQ to learn how to remove these false positives.
Indeed the Waste Report does its best to extract names from build scripts, but won't be able to resolve things like format!("C-lib-1.0.23-{}", suffix)
.
To resolve this, set your own include
directive. The Criner Waste Report will help finding even better includes from that point on, but it will merely
be a suggestion, trusting that you set includes exactly the way they are needed.
It detecs files included via include_str!(…)
and include_bytes!(…)
, but only so in in lib.rs
and main.rs
, or other binary targets.
Add the include = […]
that it proposes, possibly altered to your liking and needs. It will still provide you with potential negated include
patterns to exclude, for instance, tests and docs.
The waste report favors include directives, as it will not mark any file as wasted if present, but make recommendations on how to save even more by excluding tests, docs and the likes.
When excludes are present, it makes recommendations mandatory, and considers all files that don't are included despites those recommendations to be waste. The reason is that whitelists, i.e. include directives, are better supported by cargo due to the presence of negations, so it assumes people have better control over the includes they make.
README.md
will actually match everything that matches */README.md
or **/README.md
. This may include unwanted files and we will not detect these.
Circumvent this yourself by using a prefix slash, such as in /README.md
indicating the file must be in the top level.Criner is a platform to make incrementally mining crates.io easy and affordable for everyone. Criner is fast, configurable to use all available bandwidth and CPU, while keeping the memory footprint low enough to comfortably run on small devices with less than 512MB of RAM.
I live in China and learned to live with slow and flaky internet connections. Every byte that reaches my computer makes me shed a tear in joy.
I made Criner to help me reduce the average download size of crates, triggered by the realization that nushell
sent me 3MB of
images in a 4MB download. The fix was trivial, and I wondered how much more there was to
gain by simple fixes. The idea for The Criner Waste Report was born.
Criner currently operates in three stages when executed with criner mine
:
Cargo.toml
in full up to 128kb in size.
As of 2018-03-18 it takes 10min to process all 215k crate versions on a 5year old MBPro with 4 physical cores.cargo geiger
.Clone this repository and run cargo run --release -- mine
to get started. Provided criner is allowed to finish, it will require about 46GB of disk space as of 2020-03-18.
Provided there is a database generated already with criner mine
, run criner export
to get another SQlite database with all data exploded into tables and fields, which
can be operated using SQL. This process is non-incremental and takes about 5 minutes to complete on a single core. Threading is not implemented.
Possible improvements are along export performance - it could probably be parallel and incremental - and along not having to mine yourself for an initial database state. Criner could upload its database once a day to an S3 bucket for instance - it's about 800MB gzipped.
As migrations are currently special purpose programs that may eat laundry for breakfast, they cannot be executed by accident.
RUST_LOG=info cargo run --features migration -- migrate