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.06"} 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.2/sqlite3-5.0.2.tbz" 33 checksum: [ 34 "sha256=02ddd45536ea432f4cc149ca140f77de0c1a99c67741caf28afd6f092c396a69" 35 "sha512=d982094454d06dc4f070da20fb9b02a112bfe17bae8d7889a370b6d7c88a44d09746675f1f061f107a9382b21032368505c889886278be3310a0545075133e11" 36 ] 37}