this repo has no description
1opam-version: "2.0" 2synopsis: "A library to deal with RPCs in OCaml - meta-package" 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/rpc" 8bug-reports: "https://github.com/mirage/ocaml-rpc/issues" 9depends: [ 10 "ocaml" {>= "4.04.0"} 11 "dune" {>= "1.5.0"} 12 "rpclib" {=version} 13 "rpclib-async" {=version} 14 "rpclib-lwt" {=version} 15 "ppx_deriving_rpc" {=version} 16 "async" {>= "v0.9.0"} 17 "lwt" 18 "alcotest" {with-test & < "1.0.0"} 19 "alcotest-lwt" {with-test & < "1.0.0"} 20 "md2mld" {>= "0.3.0"} 21 "odoc" {with-doc} 22] 23conflicts: [ 24 "core" {< "v0.9.0"} 25] 26build: [ 27 ["dune" "build" "-p" name "-j" jobs] 28 ["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc} 29] 30dev-repo: "git+https://github.com/mirage/ocaml-rpc" 31description: """ 32`ocaml-rpc` is a library that provides remote procedure calls (RPC) 33using XML or JSON as transport encodings, and multiple generators 34for documentations, clients, servers, javascript bindings, python 35bindings, ... 36 37The transport mechanism itself is outside the scope of this library 38as all conversions are from and to strings. 39 40This is a dummy package installing the main library components. 41""" 42url { 43 src: "https://github.com/mirage/ocaml-rpc/archive/v7.0.0.tar.gz" 44 checksum: [ 45 "sha256=9d0aaccb84bc09586fe4a56a724378620b659bfc2e2a31fe0793c33d7a48e14a" 46 "sha512=e17b69c2e86179885e48a8b4314f8ed7209ae42f4981a13b75f9b6a176a338fa565b0e3868288e3016145109d7752ccb9a5b16df1851de8c8456fc722d1303bc" 47 ] 48}