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"
9depends: [
10 "ocaml" {>= "4.04.0"}
11 "dune" {>= "1.5.0"}
12 "rpclib" {>= "5.0.0"}
13 "rresult"
14 "ppxlib" {< "0.9.0"}
15 "rpclib-lwt" {with-test & >= "5.0.0"}
16 "rpclib-async" {with-test & >= "5.0.0"}
17 "lwt" {with-test & >= "3.0.0"}
18 "async" {with-test}
19 "alcotest" {with-test}
20]
21build: [
22 ["dune" "build" "-p" name "-j" jobs]
23 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
24]
25dev-repo: "git+https://github.com/mirage/ocaml-rpc"
26description: """
27`ocaml-rpc` is a library that provides remote procedure calls (RPC)
28using XML or JSON as transport encodings, and multiple generators
29for documentations, clients, servers, javascript bindings, python
30bindings, ...
31
32The transport mechanism itself is outside the scope of this library
33as all conversions are from and to strings.
34"""
35url {
36 src:
37 "https://github.com/mirage/ocaml-rpc/releases/download/v6.1.0/rpclib-v6.1.0.tbz"
38 checksum: [
39 "sha256=8eac73ff90c4edaa2dbc697126a81217dafad6ed1ad99046fd357a0539a565f9"
40 "sha512=f82d1dc189fb734cf0635ff0fd556211463e933763b604342882f319bee59cc2f8ae05f2d1155c90ee186b269d7560b08ea51282a01e3c8fd0d7b36f7bd321b2"
41 ]
42}