this repo has no description
1opam-version: "2.0" 2maintainer: "Dario Teixeira <dte@issuu.com>" 3synopsis: "Syntax extension for facilitating usage of MySQL bindings" 4description: """ 5This syntax extension aims to reduce the pain and boilerplate associated with 6using MySQL bindings from OCaml. It is similar in spirit to PG'OCaml, but 7without the compile-time communication with the DB engine for type inference. 8""" 9homepage: "https://github.com/issuu/ppx_mysql" 10dev-repo: "git+https://github.com/issuu/ppx_mysql.git" 11bug-reports: "https://github.com/issuu/ppx_mysql/issues" 12doc: "https://issuu.github.io/ppx_mysql/" 13build: [ 14 ["dune" "build" "-p" name "-j" jobs] 15 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 16] 17depends: [ 18 "alcotest" {with-test & >= "0.8" & < "0.9"} 19 "dune" 20 "ocamlformat" {with-test & >= "0.9" & <= "0.11.0"} 21 "ocaml" {>= "4.06.0" } 22 "ppxlib" {>= "0.2" & < "0.9"} 23 "ppx_deriving" {with-test & >= "4.2" & < "5.0"} 24] 25authors: "Team Raccoons at Issuu" 26url { 27 src: "https://github.com/issuu/ppx_mysql/archive/1.1.tar.gz" 28 checksum: [ 29 "md5=1a29e0700c1311552059a8587168bdf6" 30 "sha512=a6f2922611acd4bf7998d24e3edd25a2740c944b1cfaf9220e6f33a32fabb9a7ec670ba5c2a7e0f48a27ad72455562c3b00bc0765bd3d196ef1b12985447f1ad" 31 ] 32}