this repo has no description
1opam-version: "2.0" 2build: [ 3 ["dune" "subst"] {dev} 4 ["dune" "build" "-p" name "-j" jobs] 5 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 6 ["dune" "build" "-p" name "@doc"] {with-doc} 7] 8maintainer: ["Markus Mottl <markus.mottl@gmail.com>"] 9authors: [ 10 "Markus Mottl <markus.mottl@gmail.com>" 11 "Christian Szegedy <csdontspam@metamatix.com>" 12] 13bug-reports: "https://github.com/mmottl/sqlite3-ocaml/issues" 14homepage: "https://mmottl.github.io/sqlite3-ocaml" 15doc: "https://mmottl.github.io/sqlite3-ocaml/api" 16license: "Expat" 17dev-repo: "git+https://github.com/mmottl/sqlite3-ocaml.git" 18synopsis: "SQLite3 bindings for OCaml" 19description: """ 20sqlite3-ocaml is an OCaml library with bindings to the SQLite3 client API. 21Sqlite3 is a self-contained, serverless, zero-configuration, transactional SQL 22database engine with outstanding performance for many use cases.""" 23depends: [ 24 "ocaml" {>= "4.05"} 25 "dune" {>= "1.11"} 26 "dune-configurator" 27 "conf-sqlite3" {build} 28 "ppx_inline_test" {with-test} 29] 30url { 31 src: 32 "https://github.com/mmottl/sqlite3-ocaml/releases/download/5.0.1/sqlite3-5.0.1.tbz" 33 checksum: [ 34 "sha256=56d78a9898af8a2cc97a0f01fa0db0dc49d43c62df35b5c1541c1b9dbf9ed547" 35 "sha512=95bd6997d9f143b143be5f293448857309b64d76cea39784cae06b18c2eecb4efe382dca82eabcc123cf74a4160bf7f2b204d06fc22ecb83a1f9bdec7af45817" 36 ] 37}