this repo has no description
1opam-version: "2.0" 2synopsis: "Raft consensus algorithm implemented in OCaml" 3description: "Raft consensus algorithm implemented in OCaml" 4maintainer: "komamitsu@gmail.com" 5authors: "Mitsunori Komatsu" 6license: "Apache" 7homepage: "https://github.com/komamitsu/oraft" 8bug-reports: "https://github.com/komamitsu/oraft/issues" 9depends: [ 10 "ocaml" {>= "4.05.0"} 11 "dune" {>= "2.0"} 12 "core" {>= "v0.9.0" & < "v0.15"} 13 "cohttp-lwt-unix" 14 "yojson" 15 "ppx_deriving" 16 "ppx_deriving_yojson" 17 "ounit" {with-test} 18 "fileutils" {with-test} 19] 20build: [ 21 ["dune" "build" "-p" name "-j" jobs] 22 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 23] 24dev-repo: "git+https://github.com/komamitsu/oraft.git" 25url { 26 src: "https://github.com/komamitsu/oraft/archive/0.1.1.tar.gz" 27 checksum: [ 28 "md5=e0b530b3b1553f729d7c58a764f116f4" 29 "sha512=c27aae4ca8a7c4506e11cb86cc10468086443433a9c410ef98ec3efccd0dec5c548aa858b8c07d0347a1c99a83781a0eb7239d0445457813b3bfdb00a404706c" 30 ] 31}