letta 0.1.2

A robust Rust client for the Letta REST API
Documentation
{ inputs, ... }: {
  perSystem =
    { config
    , self'
    , pkgs
    , lib
    , ...
    }: {
      devShells.default = pkgs.mkShell {
        name = "letta-shell";
        inputsFrom = [
          self'.devShells.rust
          config.pre-commit.devShell # See ./nix/modules/pre-commit.nix
        ];
        packages = with pkgs; [
          just
          nixd # Nix language server
          bacon
          cargo-release
          config.process-compose.cargo-doc-live.outputs.package
        ];
      };
    };
}