this repo has no description
1opam-version: "2.0" 2synopsis: "A library to deal with RPCs in OCaml - Lwt interface" 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/rpclib-lwt" 8bug-reports: "https://github.com/mirage/ocaml-rpc/issues" 9license: "ISC" 10depends: [ 11 "ocaml" 12 "alcotest" {with-test} 13 "dune" {>= "2.0.0"} 14 "rpclib" {=version} 15 "lwt" {>= "3.0.0"} 16 "alcotest-lwt" {with-test} 17 "ppx_deriving_rpc" {with-test & =version} 18] 19build: [ 20 ["dune" "build" "-p" name "-j" jobs] 21 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 22] 23dev-repo: "git+https://github.com/mirage/ocaml-rpc" 24description: """ 25`ocaml-rpc` is a library that provides remote procedure calls (RPC) 26using XML or JSON as transport encodings, and multiple generators 27for documentations, clients, servers, javascript bindings, python 28bindings, ... 29 30The transport mechanism itself is outside the scope of this library 31as all conversions are from and to strings. 32""" 33url { 34 src: 35 "https://github.com/mirage/ocaml-rpc/releases/download/v8.1.1/rpclib-8.1.1.tbz" 36 checksum: [ 37 "sha256=7490acef5f0914220cf00f4d7977b29b16c6840a378f515864b5f31b93d0f399" 38 "sha512=7424ac12f5a96207875e0a0eba4f13772c93540e87491232105c7852193a47432b5442f748264bb5cb90dab8b1711b1368e870b3eca083ffff9cf73a27df5ed9" 39 ] 40} 41x-commit-hash: "0f3edef992f241170a12cf9e2e9e118122e6336a"