this repo has no description
1opam-version: "2.0" 2synopsis: "LSP protocol implementation in OCaml" 3description: """ 4 5Implementation of the LSP protocol in OCaml. It is designed to be as portable as 6possible and does not make any assumptions about IO. 7""" 8maintainer: ["Rudi Grinberg <me@rgrinerg.com>"] 9authors: [ 10 "Andrey Popp <8mayday@gmail.com>" 11 "Rusty Key <iam@stfoo.ru>" 12 "Louis Roché <louis@louisroche.net>" 13 "Oleksiy Golovko <alexei.golovko@gmail.com>" 14 "Rudi Grinberg <me@rgrinberg.com>" 15 "Sacha Ayoun <sachaayoun@gmail.com>" 16 "cannorin <cannorin@gmail.com>" 17] 18license: "ISC" 19homepage: "https://github.com/ocaml/ocaml-lsp" 20bug-reports: "https://github.com/ocaml/ocaml-lsp/issues" 21depends: [ 22 "dune" {>= "2.5"} 23 "stdlib-shims" 24 "jsonrpc" {= version} 25 "yojson" 26 "ppx_yojson_conv_lib" 27 "ocaml-syntax-shims" 28 "cppo" 29 "uutf" 30 "csexp" 31 "odoc" {with-doc} 32 "menhir" {with-test} 33 "cinaps" {with-test} 34 "ppx_expect" {with-test & >= "v0.14.0"} 35 "ocaml" {>= "4.06"} 36] 37dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git" 38build: [ 39 ["dune" "subst"] {dev} 40 ["ocaml" "unix.cma" "unvendor.ml"] 41 [ 42 "dune" 43 "build" 44 "-p" 45 name 46 "-j" 47 jobs 48 "@install" 49 "@doc" {with-doc} 50 ] 51] 52x-commit-hash: "154ccd7142651807d40eb851969f318b873b7fb4" 53url { 54 src: 55 "https://github.com/ocaml/ocaml-lsp/releases/download/1.4.1/jsonrpc-1.4.1.tbz" 56 checksum: [ 57 "sha256=cee8371e7048e24c90e916c373ef6f3aba6f474d8a5fcf507ab6650fd8575eeb" 58 "sha512=150ebf71d3484d3beec1a145877cf30d84581bd072dd20159e878ed07cc4fc647b019b98bb0c9fede839b87f7bd13de4a64b534c0760a2ec57d0e4a4deac6f0f" 59 ] 60}