this repo has no description
1# This file is generated by dune, edit dune-project instead 2opam-version: "2.0" 3synopsis: "SQLite3 bindings for OCaml" 4description: """ 5sqlite3-ocaml is an OCaml library with bindings to the SQLite3 client API. 6Sqlite3 is a self-contained, serverless, zero-configuration, transactional SQL 7database engine with outstanding performance for many use cases.""" 8maintainer: ["Markus Mottl <markus.mottl@gmail.com>"] 9authors: [ 10 "Markus Mottl <markus.mottl@gmail.com>" 11 "Christian Szegedy <csdontspam@metamatix.com>" 12] 13license: "MIT" 14tags: ["clib:sqlite3" "clib:pthread"] 15homepage: "https://mmottl.github.io/sqlite3-ocaml" 16doc: "https://mmottl.github.io/sqlite3-ocaml/api" 17bug-reports: "https://github.com/mmottl/sqlite3-ocaml/issues" 18depends: [ 19 "dune" {>= "2.7"} 20 "ocaml" {>= "4.12"} 21 "dune-configurator" 22 "conf-sqlite3" {build} 23 "ppx_inline_test" {with-test} 24 "odoc" {with-doc} 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/mmottl/sqlite3-ocaml.git" 41url { 42 src: 43 "https://github.com/mmottl/sqlite3-ocaml/releases/download/5.1.0/sqlite3-5.1.0.tbz" 44 checksum: [ 45 "sha256=bb0db711691a8dfa24fe29ec4ecb6912444ad90e0f4c447af89831e6d1dffea5" 46 "sha512=a5e3070f95ccfaffd51de7081d55a204a24d3d277a87fab985a0418e5dd1478ed0462ebaa4dbd4a8bbaf75edd1e216300601d033a7cf8ab2a8ed3b88bbcb9e64" 47 ] 48}