this repo has no description
1opam-version: "2.0" 2synopsis: 3 "An Ocaml library and utility for creating modules out of thin air that describe database tables and types, with functions for running queries and commands. Aka database modelling" 4description: 5 "In the style of ODB for C++ or JOOQ for Java, this project aims to get off the ground rudimentary support for the creation of code (Ocaml modules) that otherwise would have to be tediously hand written, and maintained to track changes, such as to field names and types, in a live database. The output modules can serve as inputs to other client projects. This project supports mysql. For postgresql support see the ocaml_pgsql_model project" 6maintainer: ["papatangonyc@gmail.com"] 7authors: ["papatangonyc@gmail.com"] 8license: "GPL-3.0-only" 9homepage: "https://github.com/pat227/ocaml-db-model.git" 10bug-reports: "https://github.com/pat227/ocaml-db-model.git/issues" 11depends: [ 12 "dune" {>= "2.0"} 13 "ocaml" {>= "4.08.1"} 14 "bignum" {>= "v0.14.0" & < "v0.15"} 15 "core" {>= "v0.14.0" & < "v0.15"} 16 "fieldslib" {>= "v0.14.0" & < "v0.15"} 17 "mysql" {>= "1.2.4"} 18 "ppx_deriving" {>= "4.5"} 19 "ppx_deriving_yojson" {>= "3.5.2"} 20 "ppx_fields_conv" {>= "v0.14.0" & < "v0.15"} 21 "pcre" {>= "7.2.3"} 22 "uint" {>= "2.0.1"} 23 "yojson" {>= "1.7.0"} 24] 25build: [ 26 ["dune" "subst"] {dev} 27 [ 28 "dune" 29 "build" 30 "-p" 31 name 32 "-j" 33 jobs 34 "@install" 35 "@runtest" {with-test} 36 "@doc" {with-doc} 37 ] 38] 39dev-repo: "git+https://github.com/pat227/ocaml-db-model.git.git" 40url { 41 src: "https://github.com/pat227/ocaml-db-model/archive/0.1.tar.gz" 42 checksum: [ 43 "md5=bc28476bd5ec043480ffe16283e18f51" 44 "sha512=5ff9718fb40620141a8f211183cde1873c4070a269ce9990b4c7ec45095126d5faf1e014920d7639639222b763590513395b633d72d8cdc7b8912c266dc2b052" 45 ] 46}