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"
41x-commit-hash: "b71a47119c6a19f3fd87637687731e496e157009"
42url {
43 src:
44 "https://github.com/arenadotio/ocaml-mssql/releases/download/2.2.0/mssql-2.2.0.tbz"
45 checksum: [
46 "sha256=4c1bba6dd0fc6be8a5a370050400192dbe54706e7c070b4d2ddce5845d5239e2"
47 "sha512=d2dd16f9bd0df3dac374d218fd8359e9a04cafabb47057dcafce9424abe624256e41b495b8b178a804f982c87c92f5f9244bae5601a937b554e61e0eaf447931"
48 ]
49}