this repo has no description
1opam-version: "2.0" 2synopsis: "SQLite3 bindings for OCaml" 3description: """ 4sqlite3-ocaml is an OCaml library with bindings to the SQLite3 client API. 5Sqlite3 is a self-contained, serverless, zero-configuration, transactional SQL 6database engine with outstanding performance for many use cases.""" 7maintainer: ["Markus Mottl <markus.mottl@gmail.com>"] 8authors: [ 9 "Markus Mottl <markus.mottl@gmail.com>" 10 "Christian Szegedy <csdontspam@metamatix.com>" 11] 12license: "MIT" 13tags: ["clib:sqlite3" "clib:pthread"] 14homepage: "https://mmottl.github.io/sqlite3-ocaml" 15doc: "https://mmottl.github.io/sqlite3-ocaml/api" 16bug-reports: "https://github.com/mmottl/sqlite3-ocaml/issues" 17depends: [ 18 "dune" {>= "2.7"} 19 "ocaml" {>= "4.12"} 20 "dune-configurator" 21 "conf-sqlite3" {build} 22 "ppx_inline_test" {with-test} 23 "odoc" {with-doc} 24] 25build: [ 26 ["dune" "subst"] {dev} 27 [ 28 "dune" 29 "build" 30 "-p" 31 name 32 "-j" 33 jobs 34 "@install" 35 "@runtest" {with-test} 36 "@doc" {with-doc} 37 ] 38] 39dev-repo: "git+https://github.com/mmottl/sqlite3-ocaml.git" 40url { 41 src: 42 "https://github.com/mmottl/sqlite3-ocaml/releases/download/5.2.0/sqlite3-5.2.0.tbz" 43 checksum: [ 44 "sha256=942283a454f4b21f7517f2e8be3d3a30594779c78a6b0478f4b70b8ca7c98cbb" 45 "sha512=59ed9dfe340339228513c77f04abaf2a4b42428c0d41f4c9ced17ce24378635d4d0a71329794164ea324365e6021d954ea0ddad76a6992d71c9585f390516ad8" 46 ] 47} 48x-commit-hash: "85d8758bfb5e844192b0b4ae3fab7130deac9fe1"