opam-version: "2.0" maintainer: "Jane Street developers" authors: ["Jane Street Group, LLC"] homepage: "https://github.com/janestreet/postgres_async" bug-reports: "https://github.com/janestreet/postgres_async/issues" dev-repo: "git+https://github.com/janestreet/postgres_async.git" doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/postgres_async/index.html" license: "MIT" build: [ ["dune" "build" "-p" name "-j" jobs] ] depends: [ "ocaml" {>= "4.14.0"} "async" {= "v0.17~preview.129.11+135"} "async_ssl" {= "v0.17~preview.129.11+135"} "core" {= "v0.17~preview.129.11+135"} "core_kernel" {= "v0.17~preview.129.11+135"} "ppx_jane" {= "v0.17~preview.129.11+135"} "dune" {>= "2.0.0"} ] available: arch != "arm32" & arch != "x86_32" synopsis: "OCaml/async implementation of the postgres protocol (i.e., does not use C-bindings to libpq)" description: " postgres_async is an OCaml PostgreSQL client that implements the PostgreSQL protocol rather than binding to the libpq C library. It provides support for regular queries (including support for 'parameters': \"SELECT * WHERE a = $1\") and COPY IN mode. The interface presented is minimal to keep the library simple for now, though in the future a layer on top may add convenience functions. " url { src: "https://github.com/janestreet/postgres_async/archive/ee8686b2dea5b2ced2ed215dabd29502f497f98b.tar.gz" checksum: "sha256=2e7a1f15e72da069bd2799034a1a9be23262efa492e1a23414ede38aae18ec1d" } flags: deprecated post-messages: [ "IMPORTANT: The bleeding edge repository mirror on ocaml.janestreet.com is being deprecated in favor of our official GitHub repository." "To ensure you receive the latest packages and updates, please update your repository URL by running:" " opam repo set-url janestreet-bleeding https://github.com/janestreet/opam-repository.git" ]