this repo has no description
1opam-version: "2.0"
2authors: ["Arena Developers <silver-snakes@arena.io>"]
3maintainer: "silver-snakes@arena.io"
4homepage: "https://github.com/arenadotio/ocaml-mssql"
5dev-repo: "git+https://github.com/arenadotio/ocaml-mssql.git"
6bug-reports: "https://github.com/arenadotio/ocaml-mssql/issues"
7doc: "https://arenadotio.github.io/ocaml-mssql/doc"
8synopsis: "Async SQL Server client using FreeTDS"
9description: "Mssql wraps FreeTDS in a nicer and safer interface, with support for parameterized queries, thread-based async IO, and a thread pool."
10
11build: [
12 ["dune" "build" "-p" name "-j" jobs]
13 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
14]
15
16depends: [
17 "async" {< "v0.13" & < "v0.15"}
18 "bignum" {< "v0.13" & < "v0.15"}
19 "ppx_jane" {< "v0.13" & < "v0.15"}
20 "freetds"
21 "ocaml" {>= "4.06.1"}
22 "ounit"
23 "logs"
24 "text" {>= "0.8.0"}
25
26 "bisect_ppx" {build & >= "1.3.1"}
27 "dune" {>= "1.4"}
28 "dune-configurator"
29]
30url {
31 src: "https://github.com/arenadotio/ocaml-mssql/archive/1.1.tar.gz"
32 checksum: [
33 "md5=852ce4937004895f47fbfd2ae223062e"
34 "sha512=8a8c5414e59a4414c9d7fcb84b0f836d94098e083a8792d2d1d7b3411948594847eee695967d65454d063a002d0980cfc1c7d2f3b8fb46bb7e3d5c4df38f7561"
35 ]
36}