this repo has no description
at main 1.4 kB view raw
1opam-version: "2.0" 2synopsis: "Pure-OCaml PostgreSQL client library" 3description: 4 "PGX is a pure-OCaml PostgreSQL client library, supporting Async, LWT, or synchronous operations." 5maintainer: ["Arena Developers <silver-snakes@arena.io>"] 6authors: ["Arena Developers <silver-snakes@arena.io>"] 7license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 8homepage: "https://github.com/arenadotio/pgx" 9doc: "https://arenadotio.github.io/pgx" 10bug-reports: "https://github.com/arenadotio/pgx/issues" 11depends: [ 12 "alcotest" {with-test & >= "1.0.0"} 13 "bisect_ppx" {dev & >= "2.0.0"} 14 "dune" {>= "1.11"} 15 "hex" 16 "ipaddr" 17 "ocaml" {>= "4.08" & < "5.0"} 18 "odoc" {with-doc} 19 "ppx_compare" {>= "v0.13.0"} 20 "ppx_custom_printf" {>= "v0.13.0"} 21 "ppx_sexp_conv" {>= "v0.13.0"} 22 "re" {>= "1.5.0"} 23 "sexplib0" {>= "v0.13.0"} 24 "uuidm" 25] 26build: [ 27 ["dune" "subst"] {dev} 28 [ 29 "dune" 30 "build" 31 "-p" 32 name 33 "-j" 34 jobs 35 "@install" 36 "@runtest" {with-test} 37 "@doc" {with-doc} 38 ] 39] 40dev-repo: "git+https://github.com/arenadotio/pgx.git" 41url { 42 src: "https://github.com/arenadotio/pgx/releases/download/1.0/pgx-1.0.tbz" 43 checksum: [ 44 "sha256=3672ca83fbf72e6480b74478e3b256bbab3bef81fad7be0da38bae60f0b8725a" 45 "sha512=e35f881179371b55be22d40a3514d593003ccba11d5b02c265b8e38dd01dd472adb41d185b3838704685e4e82096fe449c9d709db451bad9b6bde251bdc97729" 46 ] 47}