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