byte_lamination 0.1.2

Type-readable byte transformation wrappers, with CBOR and BARE serialisation and Zstd compression.
Documentation
{
  description = "byte_lamination";

  inputs = {
    utils.url = "github:numtide/flake-utils";
  };

  outputs = { self, nixpkgs, utils }:
    utils.lib.eachDefaultSystem (system: let
      pkgs = nixpkgs.legacyPackages."${system}";
    in rec {
      # `nix develop`
      devShell = pkgs.mkShell {
        nativeBuildInputs =
          let
            rust-toolchain = pkgs.symlinkJoin {
              name = "rust-toolchain";
              paths = with pkgs; [rustc cargo rustfmt rustPlatform.rustcSrc];
            };
          in
            [
              rust-toolchain
            ];
      };
    });
}