forked from mirage/ocaml-rpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ppx_deriving_rpc.opam
32 lines (31 loc) · 1.05 KB
/
ppx_deriving_rpc.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: "Ppx deriver for ocaml-rpc, a library to deal with RPCs in OCaml"
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/ppx_deriving_rpc"
bug-reports: "https://github.com/mirage/ocaml-rpc/issues"
license: "ISC"
depends: [
"ocaml" {>= "4.08"}
"dune" {>= "2.0.0"}
"rpclib" {= version}
"rresult" {>= "0.3.0"}
"ppxlib" {>= "0.18.0"}
"lwt" {with-test & >= "3.0.0"}
"alcotest" {with-test}
]
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.
"""