base36 0.0.1

Library for based36 encoding
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ pkgs ? import ./pkgs.nix {} }:

with pkgs;

let
  inherit (rust.packages.nightly) rustPlatform;
in

{
  base36 = buildRustPackage rustPlatform {
    name = "base36";
    src = gitignoreSource ./.;
    cargoDir = ".";
  };
}