ratz 0.0.1

Performant, convenient and idiomatic FP for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
let
  sources = import ./nix/sources.nix;
  rust = import ./nix/rust.nix { inherit sources; };
  rustWithExtensions = rust.override {
    extensions = [ "rust-analyzer-preview" "rustfmt-preview" "rust-src" ];
  };
  pkgs = import sources.nixpkgs { };
in pkgs.mkShell {
  buildInputs = [ rustWithExtensions ]
    ++ (with pkgs; [ cargo-edit cargo-watch cargo-inspect gnumake nixfmt ]);
}