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.04.0"} 12 "alcotest" {with-test} 13 "dune" {>= "2.0.0"} 14 "base64" {>= "3.4.0"} 15 "cmdliner" {>= "0.9.8"} 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/8.1.2/rpclib-8.1.2.tbz" 41 checksum: [ 42 "sha256=b1f0e975f8522a91cccef03569b8f372eca4e666e9f3c20d2a9d82d0e096b235" 43 "sha512=ef75ec6032805b08bd49716d5e9a4ca888c1a581b50e4ad5cc1d003cd182a47cfc87c945e7564251c8e041fc3ffa1b11e0579597fc9806db88955b3e029ba4a3" 44 ] 45} 46x-commit-hash: "78c858a17a25af0ef245db86bc96202b81a0cd14"