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