spellbook 0.0.0

Light-weight, Hunspell like spell-checker
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ pkgs, }:
let
  toolchain = pkgs.rust-bin.fromRustupToolchainFile ./rust-toolchain.toml;
in
pkgs.mkShell {
  nativeBuildInputs = with pkgs; [
    (toolchain.override {
      extensions = ["rust-src" "clippy"];
    })
    rust-analyzer
    cargo-flamegraph
  ];
  RUST_BACKTRACE = "1";
}