nslice 0.2.1

Structures for interpreting slices of variable length as arrays
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
let
  rust_overlay = import (builtins.fetchTarball "https://github.com/oxalica/rust-overlay/archive/master.tar.gz");
  pkgs = import <nixpkgs> { overlays = [ rust_overlay ]; };
  rustVersion = "1.56.1";
  rust = pkgs.rust-bin.stable.${rustVersion}.default;
in
pkgs.mkShell {
  buildInputs = [
    rust
  ] ++ (with pkgs; [
    pkg-config
  ]);
  RUST_BACKTRACE = 1;
}