lightning-time 1.0.0

Lightning Time in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
let
    pkgs = import <nixpkgs> {};
    fenix = import (fetchTarball "https://github.com/nix-community/fenix/archive/main.tar.gz") { };
in
pkgs.mkShell {
  buildInputs = [
    (fenix.complete.withComponents [
      "cargo"
      "clippy"
      "rust-src"
      "rustc"
      "rustfmt"
      "rust-analyzer"
    ])
  ];
}