this repo has no description
1opam-version: "2.0" 2maintainer: "Markus W. Weissmann <markus.weissmann@in.tum.de>" 3authors: [ "Markus W. Weissmann <markus.weissmann@in.tum.de>" ] 4license: "MIT" 5homepage: "https://github.com/mwweissmann/ocaml-json-rpc" 6dev-repo: "git+https://github.com/mwweissmann/ocaml-json-rpc.git" 7bug-reports: "https://github.com/mwweissmann/ocaml-json-rpc/issues" 8build: [ 9 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 10 ["ocaml" "setup.ml" "-build"] 11 ["ocaml" "setup.ml" "-doc"] {with-doc} 12] 13install: ["ocaml" "setup.ml" "-install"] 14remove: [ 15 ["ocamlfind" "remove" "json-rpc"] 16] 17depends: [ 18 "ocaml" {>= "4.03.0" & < "5.0"} 19 "result" 20 "yojson" {< "2.0.0"} 21 "ocamlfind" {>= "1.5"} 22 "ocamlbuild" {build} 23] 24synopsis: "JSON RPC" 25description: """ 26json-rpc implements the JSON-RPC 2.0 protocol including a server. This 27library is transport protocol independent.""" 28flags: light-uninstall 29url { 30 src: "https://github.com/mwweissmann/ocaml-json-rpc/archive/0.5.0.tar.gz" 31 checksum: [ 32 "sha256=f881e0d1cdf277ee6bde864c0a7939a4fcb880c0707540ad53c17f9b845baaa3" 33 "md5=f5f683fa4a5d025c530eee501347e7c7" 34 ] 35}