romantic 0.1.2

Roman numeral toolkit
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ pkgs ? import <nixpkgs> { } }:

with pkgs;

let
  rustup-toolchain = rust-bin.fromRustupToolchainFile ./rustup-toolchain.toml;
in
mkShell rec {
  packages = [
    cargo-audit
    cargo-edit
    cargo-make
    cargo-outdated
    cargo-tarpaulin
    rustup-toolchain
    typos
  ];
}