this repo has no description
1opam-version: "2.0" 2synopsis: "Ppx deriver for ocaml-rpc, a library to deal with RPCs in OCaml" 3maintainer: "thomas@gazagnaire.org" 4authors: "Thomas Gazagnaire, Jon Ludlam" 5tags: ["org:mirage" "org:xapi-project"] 6homepage: "https://github.com/mirage/ocaml-rpc" 7doc: "https://mirage.github.io/ocaml-rpc/ppx_deriving_rpc" 8bug-reports: "https://github.com/mirage/ocaml-rpc/issues" 9license: "ISC" 10depends: [ 11 "ocaml" {>= "4.08"} 12 "dune" {>= "2.0.0"} 13 "rpclib" {= version} 14 "rresult" {< "0.7.0"} 15 "cmdliner" {>= "0.9.8"} 16 "ppxlib" {>= "0.18.0" & < "0.36.0"} 17 "lwt" {with-test & >= "3.0.0"} 18 "alcotest" {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/mirage/ocaml-rpc" 25description: """ 26`ocaml-rpc` is a library that provides remote procedure calls (RPC) 27using XML or JSON as transport encodings, and multiple generators 28for documentations, clients, servers, javascript bindings, python 29bindings, ... 30 31The transport mechanism itself is outside the scope of this library 32as all conversions are from and to strings. 33""" 34x-commit-hash: "3c282c6ca62fe64d5f8c875ec1b3a35b931dd481" 35url { 36 src: 37 "https://github.com/mirage/ocaml-rpc/releases/download/v8.1.0/rpclib-v8.1.0.tbz" 38 checksum: [ 39 "sha256=aaa93cc249d95a119f834d7d2cdc47ea820af242065bb7f7841222ccd1936a39" 40 "sha512=0aa4a87535dde610b48c553e6de90f0d31233adf6a53424c34b5282b1ba1e1e223fd37f3e8d23efc4f165dfd2a4ed609c2692672ae04f9cadb35b04411e53e85" 41 ] 42}