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.14" & < "v0.15"} 15 "core" {>= "v0.14" & < "v0.15"} 16 "core_kernel" {>= "v0.14" & < "v0.15"} 17 "ppx_jane" {>= "v0.14" & < "v0.15"} 18 "dune" {>= "2.0.0"} 19] 20synopsis: "OCaml/async implementation of the postgres protocol (i.e., does not use C-bindings to libpq)" 21description: " 22postgres_async is an OCaml PostgreSQL client that implements the PostgreSQL 23protocol rather than binding to the libpq C library. It provides support for 24regular queries (including support for 'parameters': \"SELECT * WHERE a = $1\") 25and COPY IN mode. The interface presented is minimal to keep the library simple 26for now, though in the future a layer on top may add convenience functions. 27" 28url { 29 src: 30 "https://ocaml.janestreet.com/ocaml-core/v0.14/files/postgres_async-v0.14.0.tar.gz" 31 checksum: [ 32 "sha256=a16891d85104f65c907f31f198f09acf261f72f868ab2e2188dd4ebdc874575f" 33 "md5=8307c0f3a8fb33494e00894c6f583307" 34 ] 35}