easycurses-bump 0.13.2

Updated fork of easycurses crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
with import <nixpkgs> {};
mkShell {
  buildInputs = [
    gdb   # required for rust-gdb
    llvm  # required to find ncurses.h
    rustup
    rust-analyzer
  ];
  LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath [
    ncurses
  ];
}