-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathppx_mysql.opam
26 lines (26 loc) · 967 Bytes
/
ppx_mysql.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
opam-version: "2.0"
maintainer: "Dario Teixeira <[email protected]>"
author: "Team Raccoons at Issuu"
synopsis: "Syntax extension for facilitating usage of MySQL bindings"
description: """
This syntax extension aims to reduce the pain and boilerplate associated with
using MySQL bindings from OCaml. It is similar in spirit to PG'OCaml, but
without the compile-time communication with the DB engine for type inference.
"""
homepage: "https://github.com/issuu/ppx_mysql"
dev-repo: "git+https://github.com/issuu/ppx_mysql.git"
bug-reports: "https://github.com/issuu/ppx_mysql/issues"
doc: "https://issuu.github.io/ppx_mysql/"
build: [
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"alcotest" {with-test & >= "0.8" & < "0.9"}
"dune" {>= "1.4"}
"ocamlformat" {with-test & >= "0.9" & < "0.10"}
"ocaml" {>= "4.06.0" }
"ppx_deriving" {with-test & >= "4.2" & < "5.0"}
"ppxlib" {>= "0.2"}
"stdlib-shims"
]