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.5.tar.gz" 36 checksum: [ 37 "md5=26278704b2df581a305c91ad9f596d2e" 38 "sha512=d509459e17402b32a1e92de7b63c592e0a1d42273d7ea0223b5b2f06e3f2b319d909beedffe71a12b58630bf4c877f8ca58af42684fab246ca9ab5cee3fc78ef" 39 ] 40}