this repo has no description
1opam-version: "2.0" 2synopsis: "OCaml bindings for Google's LevelDB library" 3description: """ 4These bindings expose nearly the full LevelDB C++ API, including: 5* iterators 6* snapshots 7* batch updates and support for custom comparators 8Blocking functions release the OCaml runtime system, 9allowing to run them in parallel with other OCaml code and to perform multiple LevelDB operations in parallel. 10""" 11maintainer: ["<mfp@acm.org>"] 12authors: ["<mfp@acm.org>"] 13license: "MIT" 14homepage: "https://github.com/mfp/ocaml-leveldb" 15bug-reports: "https://github.com/mfp/ocaml-leveldb/issues" 16depends: [ 17 "ocaml" {>= "4.06" & < "5.0.0"} 18 "dune" {>= "2.0"} 19 "ounit2" {with-test} 20 "odoc" {with-doc} 21 "conf-leveldb" 22] 23build: [ 24 ["dune" "subst"] {dev} 25 [ 26 "dune" 27 "build" 28 "-p" 29 name 30 "-j" 31 jobs 32 "@install" 33 "@runtest" {with-test} 34 "@doc" {with-doc} 35 ] 36] 37dev-repo: "git+https://github.com/mfp/ocaml-leveldb.git" 38url { 39 src: "https://github.com/mfp/ocaml-leveldb/releases/download/1.3.0/ocaml-leveldb-1.3.0.tar.gz" 40 checksum: [ 41 "sha256=f88dd6054c3a53187535173caff2370a60ebe3e9233c6098882db74ea38a109a" 42 "sha512=bf867ffe9746ee189e7303d76c30bd2eb9bd202e2d170a3608d00458437dea8195b5cb3097e422c3014842bb6dccdda26c7f0e96da8e2b350b44cd70e5b12f7c" 43 ] 44}