-
Notifications
You must be signed in to change notification settings - Fork 36
/
pgocaml.opam
31 lines (31 loc) · 1.05 KB
/
pgocaml.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
opam-version: "2.0"
name: "pgocaml"
version: "4.4.0"
synopsis: "Native OCaml interface to PostgreSQL databases"
description: """
PGOCaml provides an interface to PostgreSQL databases for OCaml applications.
Note that it speaks the PostgreSQL wire protocol directly, and therefore does
not need to create bindings to the PostgreSQL libpq C library.
The PPX syntax extension is now packaged separately as 'pgocaml_ppx'.
You will want to take a look at it if you're considering using PGOCaml.
"""
maintainer: "dario.teixeira@nleyten.com"
authors: ["Richard W.M. Jones <rich@annexia.org>"]
homepage: "https://github.com/darioteixeira/pgocaml"
bug-reports: "https://github.com/darioteixeira/pgocaml/issues"
dev-repo: "git+https://github.com/darioteixeira/pgocaml.git"
license: "LGPL-2.0-only with OCaml-LGPL-linking-exception"
build: [["dune" "build" "-p" name "-j" jobs]]
depends: [
"calendar" {>= "2.0"}
"camlp-streams"
"csv"
"dune" {>= "1.10"}
"hex"
"ocaml" {>= "4.07"}
"ppx_sexp_conv"
"re" {>= "1.5.0"}
"ppx_deriving" {>= "4.2"}
"rresult"
"sexplib"
]