this repo has no description
1opam-version: "2.0"
2synopsis: "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/rpclib"
8bug-reports: "https://github.com/mirage/ocaml-rpc/issues"
9license: "ISC"
10depends: [
11 "ocaml" {>= "4.08.0"}
12 "alcotest" {with-test}
13 "dune" {>= "2.0.0"}
14 "base64" {>= "3.4.0"}
15 "cmdliner" {>= "1.1.0"}
16 "rresult" {>= "0.3.0"}
17 "result" {>= "1.5"}
18 "xmlm"
19 "yojson" {>= "1.7.0"}
20]
21conflicts: [
22 "result" {< "1.5"}
23]
24build: [
25 ["dune" "build" "-p" name "-j" jobs]
26 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
27]
28dev-repo: "git+https://github.com/mirage/ocaml-rpc"
29description: """
30`ocaml-rpc` is a library that provides remote procedure calls (RPC)
31using XML or JSON as transport encodings, and multiple generators
32for documentations, clients, servers, javascript bindings, python
33bindings, ...
34
35The transport mechanism itself is outside the scope of this library
36as all conversions are from and to strings.
37"""
38url {
39 src:
40 "https://github.com/mirage/ocaml-rpc/releases/download/9.0.0/rpclib-9.0.0.tbz"
41 checksum: [
42 "sha256=ce23eb756c028d9374bd19823296bddb7c237d3f055452d30d1cf7d15216e963"
43 "sha512=d4dfd7a9ee1b7996c24819ac1895925af0ad732f117c6e06cd28c215b14aa094dbd045e44d7f84c0eeb7ab807ed970d6879c29d07b02377fcb928325124ba7f6"
44 ]
45}
46x-commit-hash: "273c27c8d37110ca1c92b997d93e979aebcb5079"
47x-maintenance-intent: [ "(latest)" ]