displaydoc-lite 0.1.3

Implement the Display trait using your standard doc comments.
Documentation
1
2
3
4
5
6
7
8
9
{ pkgs ? import <nixpkgs> { } }:
let channel = pkgs.rust-bin.nightly."2021-01-31";
in pkgs.mkShell {
  name = "rust-shell";
  nativeBuildInputs = with pkgs; [
    (channel.rust.override { extensions = [ "rust-src" ]; })
    cargo-expand
  ];
}