sql: implicitly convert int<->decimal, require explicit cast for float<->decimal
[sqlgg.git] / sqlgg.opam
blob8c8a2d1a6292ef482ee2e2ab13b1bb5e8ae33c04
1 opam-version: "2.0"
2 maintainer: "ygrek@autistici.org"
3 authors: ["ygrek"]
4 homepage: "https://ygrek.org/p/sqlgg/"
5 dev-repo: "git+https://github.com/ygrek/sqlgg.git"
6 bug-reports: "https://github.com/ygrek/sqlgg/issues"
7 license: "GPL-2"
8 tags: [ "org:ygrek" ]
9 build: [
10   ["dune" "subst"] {pinned}
11   ["dune" "build" "-p" name "-j" jobs "@install" "@doc" {with-doc}]
13 depends: [
14   "ocaml" {>= "4.02.0"}
15   "dune" {>= "2.0"}
16   "menhir"
17   "mybuild"
18   "ppx_deriving"
19   ("extlib" | "extlib-compat")
20   "base-unix"
21   "odoc" {with-doc}
22   "ounit"
24 depopts: [
25   "mariadb"
26   "mysql"
27   "sqlite3"
29 synopsis: "SQL Guided (code) Generator"
30 description: """
31 sqlgg is an SQL query parser and binding code generator for C#, C++, Java, OCaml.
32 It starts off with SQL schema and queries, and generates code (or XML, allowing
33 further code generation for various purposes). Generated code only defines a mapping
34 of output columns and query parameters to the host language, trying to be as unobtrusive
35 as possible and leaving the choice of SQL database (and API to access it) to the developer."""