this repo has no description
1opam-version: "2.0" 2maintainer: "Jane Street developers" 3authors: ["Jane Street Group, LLC"] 4homepage: "https://github.com/janestreet/postgres_async" 5bug-reports: "https://github.com/janestreet/postgres_async/issues" 6dev-repo: "git+https://github.com/janestreet/postgres_async.git" 7doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/postgres_async/index.html" 8license: "MIT" 9build: [ 10 ["dune" "build" "-p" name "-j" jobs] 11] 12depends: [ 13 "ocaml" {>= "4.08.0"} 14 "async" {>= "v0.13" & < "v0.14"} 15 "core" {>= "v0.13" & < "v0.14"} 16 "ppx_jane" {>= "v0.13" & < "v0.14"} 17 "dune" {>= "1.5.1"} 18] 19synopsis: "OCaml/async implementation of the postgres protocol (i.e., does not use C-bindings to libpq)" 20description: " 21postgres_async is an OCaml PostgreSQL client that implements the PostgreSQL 22protocol rather than binding to the libpq C library. It provides support for 23regular queries (including support for 'parameters': \"SELECT * WHERE a = $1\") 24and COPY IN mode. The interface presented is minimal to keep the library simple 25for now, though in the future a layer on top may add convenience functions. 26" 27url { 28 src: 29 "https://ocaml.janestreet.com/ocaml-core/v0.13/files/postgres_async-v0.13.0.tar.gz" 30 checksum: [ 31 "sha256=b95961bf2edd9d383bb0b3ec3bac8d833467bd905da77b468bfca481502b835b" 32 "md5=d8b77d39f0b3a40c46cbb258fa060934" 33 ] 34}