this repo has no description
1opam-version: "2.0" 2maintainer: "thomas@gazagnaire.org" 3authors: "Thomas Gazagnaire, Jon Ludlam" 4homepage: "https://github.com/mirage/ocaml-rpc" 5bug-reports: "https://github.com/mirage/ocaml-rpc/issues" 6dev-repo: "git+https://github.com/mirage/ocaml-rpc" 7doc: "https://mirage.github.io/ocaml-rpc/rpclib" 8tags: [ 9 "org:mirage" 10 "org:xapi-project" 11] 12build: [ 13 ["jbuilder" "build" "-p" name "-j" jobs] 14 ["jbuilder" "runtest" "-p" name] {with-test} 15] 16depends: [ 17 "ocaml" {>= "4.04.0" < "4.10.0"} 18 "jbuilder" {>= "1.0+beta9"} 19 "alcotest" {with-test & < "1.0.0"} 20 "cmdliner" {>= "0.9.8"} 21 "rresult" {>= "0.3.0" & < "0.7.0"} 22 "xmlm" 23 "yojson" 24] 25synopsis: "Remote procedure calls (RPC) library" 26description: """ 27`rpclib` is a library that provides remote procedure calls (RPC) 28using XML or JSON as transport encodings. The transport mechanism itself 29is outside the scope of this library as all conversions are from and to 30strings.""" 31url { 32 src: "https://github.com/mirage/ocaml-rpc/archive/v6.0.0.tar.gz" 33 checksum: [ 34 "sha256=ec4ba5bfbdbc11f0d3292f8e08af28354da1a6812243263136e7c7357d6b1935" 35 "md5=9d10fc413a559e1d8aa380a8b145736f" 36 ] 37}