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 "core" {< "v0.15"} 15 "ctypes" {>= "0.14.0"} 16 "ctypes-foreign" 17 "ppx_deriving" {>= "4.2"} 18] 19build: [ 20 ["dune" "subst"] {dev} 21 [ 22 "dune" 23 "build" 24 "-p" 25 name 26 "-j" 27 jobs 28 "@install" 29 "@runtest" {with-test} 30 "@doc" {with-doc} 31 ] 32] 33dev-repo: "git+https://github.com/roddyyaga/pg_query-ocaml.git" 34url { 35 src: "https://github.com/roddyyaga/pg_query-ocaml/archive/0.9.4.tar.gz" 36 checksum: [ 37 "md5=219f416bcaa6b3a25dcc088b408d559f" 38 "sha512=64aa1d4b99a0afe564155283fcbec6f3b59c6c0c34688cc1a2859603dd9a32ecc0a4a519bdda6437724b4263d78b4d0c3e972b4f301e203e0703cb2c326efaf0" 39 ] 40}