-
Notifications
You must be signed in to change notification settings - Fork 31
/
rpclib-lwt.opam
32 lines (31 loc) · 1.03 KB
/
rpclib-lwt.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
opam-version: "2.0"
synopsis: "A library to deal with RPCs in OCaml - Lwt interface"
maintainer: "Marcello Seri"
authors: ["Thomas Gazagnaire" "Jon Ludlam"]
tags: ["org:mirage" "org:xapi-project"]
homepage: "https://github.com/mirage/ocaml-rpc"
doc: "https://mirage.github.io/ocaml-rpc/rpclib-lwt"
bug-reports: "https://github.com/mirage/ocaml-rpc/issues"
license: "ISC"
depends: [
"ocaml"
"alcotest" {with-test}
"dune" {>= "2.0.0"}
"rpclib" {=version}
"lwt" {>= "3.0.0"}
"alcotest-lwt" {with-test}
"ppx_deriving_rpc" {with-test & =version}
]
build: [
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
dev-repo: "git://github.com/mirage/ocaml-rpc"
description: """
`ocaml-rpc` is a library that provides remote procedure calls (RPC)
using XML or JSON as transport encodings, and multiple generators
for documentations, clients, servers, javascript bindings, python
bindings, ...
The transport mechanism itself is outside the scope of this library
as all conversions are from and to strings.
"""