r2d2_cypher 0.4.0

Cypher support for the r2d2 connection pool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
let
  pkgs    = import <nixpkgs> {};
  stdenv  = pkgs.stdenv;
  lib     = pkgs.lib;

in rec {
  devEnv = stdenv.mkDerivation rec {
    name = "r2d2-cypher-dev-env";
    src = ./.;
    buildInputs = with pkgs; [
      git
      rustPlatform.rustc
      rustfmt
      cargo
      openssl
    ];
  };
}