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