-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12441 from samoht/rpclib
Add rpclib
- Loading branch information
Showing
3 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Remote procedure calls (RPC) library | ||
|
||
`rpclib` is a library that provides remote procedure calls (RPC) | ||
using XML or JSON as transport encodings. The transport mechanism itself | ||
is outside the scope of this library as all conversions are from and to | ||
strings. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
opam-version: "1.2" | ||
maintainer: "[email protected]" | ||
authors: "Thomas Gazagnaire, Jon Ludlam" | ||
homepage: "https://github.com/mirage/ocaml-rpc" | ||
bug-reports: "https://github.com/mirage/ocaml-rpc/issues" | ||
dev-repo: "git://github.com/mirage/ocaml-rpc" | ||
doc: "https://mirage.github.io/ocaml-rpc/rpclib" | ||
tags: [ | ||
"org:mirage" | ||
"org:xapi-project" | ||
] | ||
build-test: [ | ||
["jbuilder" "runtest" "-p" name] | ||
] | ||
build: [["jbuilder" "build" "-p" name "-j" jobs]] | ||
depends: [ | ||
"alcotest" {test} | ||
"jbuilder" {build} | ||
"cmdliner" | ||
"rresult" | ||
"xmlm" | ||
"yojson" | ||
] | ||
available: [ ocaml-version >= "4.04.0" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
http: "https://github.com/mirage/ocaml-rpc/archive/v5.9.0.tar.gz" | ||
checksum: "177db71621a7aa7a55cbea6c237eb6dc" |