forked from mmottl/sqlite3-ocaml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsqlite3.opam
30 lines (30 loc) · 1.04 KB
/
sqlite3.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
build: [
["dune" "subst"] {pinned}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
["dune" "build" "-p" name "@doc"] {with-doc}
]
maintainer: ["Markus Mottl <[email protected]>"]
authors: [
"Markus Mottl <[email protected]>"
"Christian Szegedy <[email protected]>"
]
bug-reports: "https://github.com/mmottl/sqlite3-ocaml/issues"
homepage: "https://mmottl.github.io/sqlite3-ocaml"
doc: "https://mmottl.github.io/sqlite3-ocaml/api"
license: "Expat"
dev-repo: "git+https://github.com/mmottl/sqlite3-ocaml.git"
synopsis: "SQLite3 bindings for OCaml"
description: """
sqlite3-ocaml is an OCaml library with bindings to the SQLite3 client API.
Sqlite3 is a self-contained, serverless, zero-configuration, transactional SQL
database engine with outstanding performance for many use cases."""
depends: [
"ocaml" {>= "4.05"}
"dune" {>= "1.11"}
"dune-configurator"
"conf-sqlite3" {build}
"ppx_inline_test" {with-test}
]