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