this repo has no description
1opam-version: "2.0" 2synopsis: "A binding to RocksDB" 3description: """ 4This is a binding to Facebook's RocksDB. 5 6Early prototype of this library based on [orocksdb](https://github.com/domsj/orocksdb), we decided to rewrite our own binding to make use of Ctypes's stubs generators instead of the dynamic mode used in orocksdb. 7 8It is currently based and was tested against RocksDB 5.14fb, and should work with newer versions of this library. 9 10## API changes and contributions 11 12While we do not plan big changes in what is already implemented, we do not guarantee the stability of these APIs. 13 14Some APIs could definitely use improvements (moving the current configuration system to a builder-like pattern), 15and some breakage may or may-not happen. 16 17Pull requests to improve any parts of the library are however welcome, whether they are related to 18tests, binding coverage, or API improvements, feel free to open an issue to discuss changes.""" 19maintainer: "Enguerrand Decorne <enguerrand.decorne@ahrefs.com>" 20authors: "Enguerrand Decorne <enguerrand.decorne@ahrefs.com>" 21license: "MIT" 22homepage: "https://github.com/ahrefs/ocaml-ahrocksdb" 23doc: "https://ahrefs.github.io/ocaml-ahrocksdb/" 24bug-reports: "https://github.com/ahrefs/ocaml-ahrocksdb/issues" 25depends: [ 26 "ocaml" {>= "4.06.0"} 27 "dune" {>= "1.3"} 28 "dune-configurator" 29 "ctypes" {>= "0.13.0"} 30 "astring" 31 "conf-rocksdb" 32 "rresult" 33 "bos" {with-test} 34 "cryptokit" {with-test} 35 "alcotest" {with-test} 36] 37build: [ 38 ["dune" "subst"] {dev} 39 ["dune" "build" "-p" name "-j" jobs] 40 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 41] 42x-ci-accept-failures: ["debian-11" "debian-unstable"] 43dev-repo: "git+https://github.com/ahrefs/ocaml-ahrocksdb.git" 44url { 45 src: 46 "https://github.com/ahrefs/ocaml-ahrocksdb/releases/download/0.2.1/ahrocksdb-0.2.1.tbz" 47 checksum: [ 48 "sha256=656075fdf8711c2c1d8c2056261683d922d791c1a2988fd9ecee65115ba8c1a0" 49 "md5=765b94952fe27eb78f703b1d7580506c" 50 ] 51}