diesel-tracing 0.3.1

Connection telemetry middleware for diesel and tracing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
{ pkgs ? import <nixpkgs> {} }:

pkgs.mkShell {
  name = "diesel-tracing-dev-env";
  buildInputs = with pkgs; [
    pkg-config
    postgresql
    libmysqlclient
    sqlite
  ];

  LD_LIBRARY_PATH = "${pkgs.postgresql.lib}/lib";
}