this repo has no description
1opam-version: "2.0" 2synopsis: "Jsonrpc protocol implemenation" 3description: "See https://www.jsonrpc.org/specification" 4maintainer: ["Rudi Grinberg <me@rgrinerg.com>"] 5authors: [ 6 "Andrey Popp <8mayday@gmail.com>" 7 "Rusty Key <iam@stfoo.ru>" 8 "Louis Roché <louis@louisroche.net>" 9 "Oleksiy Golovko <alexei.golovko@gmail.com>" 10 "Rudi Grinberg <me@rgrinberg.com>" 11 "Sacha Ayoun <sachaayoun@gmail.com>" 12 "cannorin <cannorin@gmail.com>" 13] 14license: "ISC" 15homepage: "https://github.com/ocaml/ocaml-lsp" 16bug-reports: "https://github.com/ocaml/ocaml-lsp/issues" 17depends: [ 18 "dune" {>= "2.5"} 19 "yojson" 20 "stdlib-shims" 21 "ocaml-syntax-shims" 22 "ppx_yojson_conv_lib" 23 "result" {>= "1.5"} 24 "odoc" {with-doc} 25 "ocaml" {>= "4.06"} 26] 27dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git" 28build: [ 29 ["dune" "subst"] {dev} 30 ["ocaml" "unix.cma" "unvendor.ml"] 31 [ 32 "dune" 33 "build" 34 "-p" 35 name 36 "-j" 37 jobs 38 "@install" 39 "@doc" {with-doc} 40 ] 41] 42x-commit-hash: "92924b6e36a91ce323b7f8eddfe20def4173e6e5" 43url { 44 src: 45 "https://github.com/ocaml/ocaml-lsp/releases/download/1.4.0/jsonrpc-1.4.0.tbz" 46 checksum: [ 47 "sha256=fd138e6c4fcff32c6d15eb66cc9391b7e1183717a6d1a47c688c7f6d320a159f" 48 "sha512=567a73b3c10bb59c5a4d4e8291d1aeefdfd34438a95313fba8a485638294ca5fb8034334719631243c304d3328c27afa90dfd564fdb1e7390507a06db3a4ad03" 49 ] 50}