toipe 0.4.1

A trusty terminal typing tester.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
with import <nixpkgs> {};
mkShell {
  packages = [
    rustc
    cargo
    clippy
    rust-analyzer
    rustfmt
  ];
  RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
  shellHook = ''
    alias run="cargo run"
    alias build="cargo build"
  '';
}