-
Notifications
You must be signed in to change notification settings - Fork 16
/
pgx.opam
42 lines (42 loc) · 1.11 KB
/
pgx.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
32
33
34
35
36
37
38
39
40
41
42
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Pure-OCaml PostgreSQL client library"
description:
"PGX is a pure-OCaml PostgreSQL client library, supporting Async, LWT, or synchronous operations."
maintainer: ["Arena Developers <silver-snakes@arena.io>"]
authors: ["Arena Developers <silver-snakes@arena.io>"]
license: "LGPL-2.0-only with OCaml-LGPL-linking-exception"
homepage: "https://github.com/arenadotio/pgx"
doc: "https://arenadotio.github.io/pgx"
bug-reports: "https://github.com/arenadotio/pgx/issues"
depends: [
"alcotest" {with-test & >= "1.0.0"}
"bisect_ppx" {dev & >= "2.0.0"}
"dune" {>= "3.2" & >= "3.2"}
"hex"
"ipaddr"
"camlp-streams"
"ocaml" {>= "4.08"}
"odoc" {with-doc}
"ppx_compare" {>= "v0.13.0"}
"ppx_custom_printf" {>= "v0.13.0"}
"ppx_sexp_conv" {>= "v0.13.0"}
"re" {>= "1.5.0"}
"sexplib0" {>= "v0.13.0"}
"uuidm"
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/arenadotio/pgx.git"