tern 3.1.6

Embedded database migrations in SQL or Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ inputs, ... }:
{
  perSystem =
    { pkgs, inputs', ... }:
    let
      rustPkgs = inputs'.fenix.packages.stable;
    in
    {
      _module.args = {
        inherit rustPkgs;

        crane = (inputs.crane.mkLib pkgs).overrideToolchain rustPkgs.toolchain;

        craneWithToolchain = toolchain: (inputs.crane.mkLib pkgs).overrideToolchain toolchain;
      };
    };
}