lyte-observer 1.0.0

A thin wrapper around my most commonly-used crates for error handling and reporting, tracing, observability, logs, etc.
Documentation
{
  self,
  pkgs,
  ...
}: let
  inherit (pkgs) system;
in rec {
  my-package-dev = pkgs.mkShell {
    inherit (self.checks.${system}.git-hooks) shellHook;
    inputsFrom = [self.packages.${system}.my-package];
    packages = with pkgs; [
      convco
      rustPackages.clippy
      typescript-language-server
      rust-analyzer
      rustfmt
      nixd
      lldb
    ];
  };
  default = my-package-dev;
}