this repo has no description
1opam-version: "2.0"
2synopsis:
3 "OCaml implementation of the native MySQL/MariaDB Protocol with the Bitstring library"
4description:
5 "This library allows you to access the functionality provided by MySQL or MariaDB"
6maintainer: ["Stéphane Legrand"]
7authors: ["Stéphane Legrand"]
8license: "LGPL-3.0-or-later"
9homepage: "https://github.com/slegrand45/mysql_protocol"
10bug-reports: "https://github.com/slegrand45/mysql_protocol/issues"
11depends: [
12 "num"
13 "dune" {>= "2.7"}
14 "ocaml" {>= "4.09.0"}
15 "cryptokit"
16 "ounit2" {with-test}
17 "bitstring" {>= "4.0.1"}
18 "ppx_bitstring" {>= "4.0.1"}
19 "odoc" {with-doc}
20]
21build: [
22 ["dune" "subst"] {dev}
23 [
24 "dune"
25 "build"
26 "-p"
27 name
28 "-j"
29 jobs
30 "@install"
31 "@runtest" {with-test}
32 "@doc" {with-doc}
33 ]
34]
35dev-repo: "git+https://github.com/slegrand45/mysql_protocol.git"
36x-commit-hash: "75a673d47c43aa7b1a11deacf7602ca77eca1d8d"
37url {
38 src:
39 "https://github.com/slegrand45/mysql_protocol/releases/download/v3.0.1/mysql_protocol-v3.0.1.tbz"
40 checksum: [
41 "sha256=a65c8cc593534a1be674d321953888182ed2ab4e84f549eff52276067166aca9"
42 "sha512=59297eb12a028e75dd2703bddd2b167755ed25d3b269bb6dc5e52c0c0ec9c08157a21bee6918c4d0d0d7ae42585df059af5160c3a87a6fb4b23911398634a51a"
43 ]
44}