File: dune-project

package info (click to toggle)
ocaml-sqlite3 5.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 340 kB
  • sloc: ansic: 1,388; ml: 1,235; makefile: 28
file content (34 lines) | stat: -rw-r--r-- 858 bytes parent folder | download
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
31
32
33
34
(lang dune 2.7)

(name sqlite3)
(version 5.3.1)

(generate_opam_files true)

(source
 (github mmottl/sqlite3-ocaml))

(license MIT)

(homepage "https://mmottl.github.io/sqlite3-ocaml")

(documentation "https://mmottl.github.io/sqlite3-ocaml/api")

(maintainers "Markus Mottl <markus.mottl@gmail.com>")

(authors "Markus Mottl <markus.mottl@gmail.com>"
  "Christian Szegedy <csdontspam@metamatix.com>")

(package
 (name sqlite3)
 (synopsis "SQLite3 bindings for OCaml")
 (description
   "sqlite3-ocaml is an OCaml library with bindings to the SQLite3 client API.\nSqlite3 is a self-contained, serverless, zero-configuration, transactional SQL\ndatabase engine with outstanding performance for many use cases.")
 (depends
  (ocaml
   (>= 4.12))
  dune-configurator
  (conf-sqlite3 :build)
  (ppx_inline_test :with-test))
 (tags
  (clib:sqlite3 clib:pthread)))