axum-controller 0.4.0

Helper macro's for better readability of axum handlers
Documentation
{ lib
, fetchFromGitHub
, rustPlatform
,
}:
rustPlatform.buildRustPackage rec {
  pname = "axum-controller";
  version = "0.0.1";

  src = ./.;

  useFetchCargoVendor = true;

  cargoLock = {
    lockFile = ./Cargo.lock;
  };

  meta = {
    # description = "";
    # homepage = "";
    # license = lib.licenses.unlicense;
    maintainers = [ ];
  };
}