reord 0.2.4

Run your tests multi-threaded, but in a reproducible way
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
let
  pkgs = import ./nix;
in
pkgs.stdenv.mkDerivation {
  name = "reord";
  buildInputs = (
    (with pkgs; [
      cargo-nextest
      niv

      (fenix.combine (with fenix; [
        minimal.cargo
        minimal.rustc
        rust-analyzer
      ]))
    ])
  );
}