zuri_nbt 0.4.0

Read and write minecraft NBT data
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
  packages = with pkgs; [
    cargo
    rust-analyzer
    rustc
    rustfmt
    rustPackages.clippy
  ];
  RUST_SRC_PATH = pkgs.rustPlatform.rustLibSrc;
}