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