this repo has no description
1opam-version: "2.0" 2maintainer: "Borja o'Cook <borjaocook@gmail.com>" 3authors: "Borja o'Cook <borjaocook@gmail.com>" 4homepage: "https://github.com/ergl/crdt-ml/" 5bug-reports: "https://github.com/ergl/crdt-ml/issues" 6license: "GPL-3.0-only" 7dev-repo: "git+https://github.com/ergl/crdt-ml.git" 8build: [ 9 ["ocaml" "setup.ml" "-configure" "--prefix" prefix "--enable-tests" {with-test}] 10 ["ocaml" "setup.ml" "-build"] 11 ["ocaml" "setup.ml" "-test"] {with-test} 12 ["ocaml" "setup.ml" "-doc"] {with-doc} 13] 14install: ["ocaml" "setup.ml" "-install"] 15depends: [ 16 "ocaml" {>= "4.02.0" & < "5.0.0"} 17 "ocamlbuild" {build} 18 "ocamlfind" {build} 19 "qtest" {with-test} 20 "ounit" {with-test} 21] 22synopsis: "CRDTs - Conflict-Free Replicated Data Types for OCaml" 23description: """ 24A set of useful state-based CRDTs for OCaml. Includes 6 different datatypes in both mutable and immutable versions. 25 26Please note that these implementations are for educational purposes only. They are not suited for production work.""" 27url { 28 src: "https://github.com/ergl/crdt-ml/archive/v0.10.0.tar.gz" 29 checksum: [ 30 "sha256=c9be2ec006cd4f65e6a9bddbcedf024f876134afc1ddf4fb689dd0167de25b73" 31 "md5=b8337dcb24a3220a3c35bd5bae5c8f12" 32 ] 33}