this repo has no description
1opam-version: "2.0" 2synopsis: "A library to deal with RPCs in OCaml - Bindings for js_of_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-js" 8bug-reports: "https://github.com/mirage/ocaml-rpc/issues" 9license: "ISC" 10depends: [ 11 "ocaml" 12 "dune" {>= "2.0.0"} 13 "rpclib" {=version} 14 "js_of_ocaml" {>= "3.5.0"} 15 "js_of_ocaml-ppx" {>= "3.5.0"} 16 "lwt" 17] 18build: ["dune" "build" "-p" name "-j" jobs] 19dev-repo: "git+https://github.com/mirage/ocaml-rpc" 20description: """ 21`ocaml-rpc` is a library that provides remote procedure calls (RPC) 22using XML or JSON as transport encodings, and multiple generators 23for documentations, clients, servers, javascript bindings, python 24bindings, ... 25 26The transport mechanism itself is outside the scope of this library 27as all conversions are from and to strings. 28""" 29url { 30 src: 31 "https://github.com/mirage/ocaml-rpc/releases/download/9.0.0/rpclib-9.0.0.tbz" 32 checksum: [ 33 "sha256=ce23eb756c028d9374bd19823296bddb7c237d3f055452d30d1cf7d15216e963" 34 "sha512=d4dfd7a9ee1b7996c24819ac1895925af0ad732f117c6e06cd28c215b14aa094dbd045e44d7f84c0eeb7ab807ed970d6879c29d07b02377fcb928325124ba7f6" 35 ] 36} 37x-commit-hash: "273c27c8d37110ca1c92b997d93e979aebcb5079" 38x-maintenance-intent: [ "(latest)" ]