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 support postgresql. For mysql support see the ocaml_db_model project"
6maintainer: ["papatangonyc@gmail.com"]
7authors: ["papatangonyc@gmail.com"]
8license: "GPL-3.0-only"
9homepage: "https://github.com/pat227/ocaml-pgsql-model.git"
10bug-reports: "https://github.com/pat227/ocaml-pgsql-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 "postgresql" {>= "4.0.1"}
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-pgsql-model.git.git"
40url {
41 src: "https://github.com/pat227/ocaml-pgsql-model/archive/0.1.tar.gz"
42 checksum: [
43 "md5=0473138e502e2b55a8f673f45674da1f"
44 "sha512=49748d1691078467ceea4c58e54a53ee7e59b7f23ec858efcf596b98b256fa1db0c316b44c7c34349d005b34d15d97f31ddde574ebff3ccd1ebc81bd8c8f9908"
45 ]
46}