inline_string 0.1.2

An array-based string type
Documentation
{ pkgs }:

pkgs.mkShell {
  packages = with pkgs; [
    ((rust-bin.fromRustupToolchainFile ./rust-toolchain.toml).override (prev: {
      extensions = prev.extensions ++ [
        "rust-src"
        "rust-analyzer"
      ];
    }))

    just
    nixfmt-rfc-style
    shfmt
    taplo
  ];

  RUST_BACKTRACE = "1";
  RUST_LIB_BACKTRACE = "1";
}