postgres-syntax 0.3.0

Compile-time syntax checking of PostgreSQL queries
Documentation
1
2
3
4
5
6
7
8
9
10
11
with import <nixpkgs> {};
mkShell {
  name = "postgres-syntax";
  buildInputs = [
    cargo
    pkg-config
    libiconv
    libpg_query
  ];
  RUSTFLAGS = ["-L${pkgs.libpg_query.out}/lib"];
}