this repo has no description
1opam-version: "2.0"
2synopsis: "Async SQL Server client using FreeTDS"
3description:
4 "Mssql wraps FreeTDS in a nicer and safer interface, with support for parameterized queries, thread-based async IO, and a thread pool."
5maintainer: ["Arena Developers <silver-snakes@arena.io>"]
6authors: ["Arena Developers <silver-snakes@arena.io>"]
7license: "Apache-2.0"
8homepage: "https://github.com/arenadotio/ocaml-mssql"
9doc: "https://arenadotio.github.io/ocaml-mssql"
10bug-reports: "https://github.com/arenadotio/ocaml-mssql/issues"
11depends: [
12 "alcotest" {with-test & >= "1.0.1"}
13 "alcotest-async" {with-test & >= "1.0.1"}
14 "async_unix" {< "v0.15"}
15 "bignum" {< "v0.15"}
16 "ppx_jane" {< "v0.15"}
17 "iter" {>= "1.2"}
18 "ocaml" {>= "4.06.1"}
19 "odoc" {with-doc}
20 "logs"
21 "text" {>= "0.8.0"}
22 "freetds" {>= "0.7"}
23 "bisect_ppx" {dev & >= "2.0.0"}
24 "dune" {>= "1.11"}
25]
26build: [
27 ["dune" "subst"] {dev}
28 [
29 "dune"
30 "build"
31 "-p"
32 name
33 "-j"
34 jobs
35 "@install"
36 "@runtest" {with-test}
37 "@doc" {with-doc}
38 ]
39]
40dev-repo: "git+https://github.com/arenadotio/ocaml-mssql.git"
41url {
42 src:
43 "https://github.com/arenadotio/ocaml-mssql/releases/download/2.1.0/mssql-2.1.0.tbz"
44 checksum: [
45 "sha256=392e7ae06f0c74bf403ec63699d917c005dec5cc64152cb519df6bf0c8a6809e"
46 "sha512=3a205c7f125fc426e44c87c5536c14bf8fdf9445db85764ec8c4ce2424503d47c6a60e62137a0b66eb16ba2f59b9ddba5824878c8b0cca856d583a505f143471"
47 ]
48}