this repo has no description
1opam-version: "2.0" 2synopsis: "PGX using the standard library's Unix module for IO (synchronous)" 3description: 4 "PGX using the standard library's Unix module for IO (synchronous)" 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 "dune" {>= "1.11"} 13 "alcotest" {with-test & >= "1.0.0"} 14 "base64" {with-test & >= "3.0.0"} 15 "ocaml" {>= "4.08"} 16 "pgx" {= version} 17] 18build: [ 19 ["dune" "subst"] {dev} 20 [ 21 "dune" 22 "build" 23 "-p" 24 name 25 "-j" 26 jobs 27 "@install" 28 "@runtest" {with-test} 29 "@doc" {with-doc} 30 ] 31] 32dev-repo: "git+https://github.com/arenadotio/pgx.git" 33url { 34 src: "https://github.com/arenadotio/pgx/releases/download/1.0/pgx-1.0.tbz" 35 checksum: [ 36 "sha256=3672ca83fbf72e6480b74478e3b256bbab3bef81fad7be0da38bae60f0b8725a" 37 "sha512=e35f881179371b55be22d40a3514d593003ccba11d5b02c265b8e38dd01dd472adb41d185b3838704685e4e82096fe449c9d709db451bad9b6bde251bdc97729" 38 ] 39}