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.6.tar.gz" 37 checksum: [ 38 "md5=fe2494f9230c587b0ef13f6722e56967" 39 "sha512=db0e3370591cf3133594abc0c9e6609f163d478ad2e1d6a62e97d0e3bf4e64935b7b6d7fddc5ace95b1d2de458822c08c7e8d8aa8b328a36e919380c4fa74d37" 40 ] 41}