├── .gitignore ├── LICENSE.LGPL+static ├── LICENSE.MIT ├── README.md ├── dune-project ├── leveldb.opam ├── leveldb.opam.template ├── src ├── dune ├── levelDB.ml ├── levelDB.mli └── leveldb_stubs.cc └── test ├── benchmark.ml ├── dune ├── test.ml └── test_utils.ml /.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | *.merlin 3 | *.install 4 | -------------------------------------------------------------------------------- /LICENSE.LGPL+static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/ocaml-leveldb/HEAD/LICENSE.LGPL+static -------------------------------------------------------------------------------- /LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/ocaml-leveldb/HEAD/LICENSE.MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/ocaml-leveldb/HEAD/README.md -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/ocaml-leveldb/HEAD/dune-project -------------------------------------------------------------------------------- /leveldb.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/ocaml-leveldb/HEAD/leveldb.opam -------------------------------------------------------------------------------- /leveldb.opam.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/ocaml-leveldb/HEAD/leveldb.opam.template -------------------------------------------------------------------------------- /src/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/ocaml-leveldb/HEAD/src/dune -------------------------------------------------------------------------------- /src/levelDB.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/ocaml-leveldb/HEAD/src/levelDB.ml -------------------------------------------------------------------------------- /src/levelDB.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/ocaml-leveldb/HEAD/src/levelDB.mli -------------------------------------------------------------------------------- /src/leveldb_stubs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/ocaml-leveldb/HEAD/src/leveldb_stubs.cc -------------------------------------------------------------------------------- /test/benchmark.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/ocaml-leveldb/HEAD/test/benchmark.ml -------------------------------------------------------------------------------- /test/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/ocaml-leveldb/HEAD/test/dune -------------------------------------------------------------------------------- /test/test.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/ocaml-leveldb/HEAD/test/test.ml -------------------------------------------------------------------------------- /test/test_utils.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfp/ocaml-leveldb/HEAD/test/test_utils.ml --------------------------------------------------------------------------------