dmatcher 0.1.3

A simple domain matching algorithm, intended to be fast.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
let
  mozilla = import (builtins.fetchTarball https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz);
  nixpkgs = import <nixpkgs> { overlays = [ mozilla ]; };
in

  with nixpkgs;

  mkShell {
    buildInputs = [
      clang # needed for bindgen
      latest.rustChannels.stable.rust
      openssl
      pkgconfig
    ];
}