this repo has no description
1opam-version: "2.0" 2synopsis: "Bindings to libpg_query for parsing PostgreSQL" 3description: 4 "OCaml bindings to libpg_query for parsing PostgreSQL, and a command-line tool that uses them" 5maintainer: ["Roddy MacSween <github@roddymacsween.co.uk>"] 6authors: ["Roddy MacSween <github@roddymacsween.co.uk>"] 7license: "MIT" 8homepage: "https://github.com/roddyyaga/pg_query-ocaml" 9doc: "https://roddyyaga.github.io/pg_query-ocaml/pg_query-ocaml/index.html" 10bug-reports: "https://github.com/roddyyaga/pg_query-ocaml/issues" 11depends: [ 12 "ocaml" {>= "4.07"} 13 "dune" {>= "2.0"} 14 "cmdliner" {>= "1.0.0"} 15 "ctypes" {>= "0.14.0"} 16 "ctypes-foreign" 17 "ppx_deriving" {>= "4.2"} 18 "alcotest" {with-test} 19] 20build: [ 21 ["dune" "subst"] {dev} 22 [ 23 "dune" 24 "build" 25 "-p" 26 name 27 "-j" 28 jobs 29 "@install" 30 "@runtest" {with-test} 31 "@doc" {with-doc} 32 ] 33] 34dev-repo: "git+https://github.com/roddyyaga/pg_query-ocaml.git" 35url { 36 src: "https://github.com/roddyyaga/pg_query-ocaml/archive/0.9.7.tar.gz" 37 checksum: [ 38 "md5=0f60f8c91c556be3f3a7e8f3f8305bb2" 39 "sha512=0efa2224ef75f1cea12437673da677964de0d56616e2166e2a794d6f6fd431b44dade1e18455cfeeab12576265f189030df4cd614f764970113476fc036633d2" 40 ] 41}