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 "stdlib-shims" 23 "jsonrpc" {= version} 24 "yojson" 25 "ppx_yojson_conv_lib" 26 "ocaml-syntax-shims" 27 "cppo" 28 "uutf" 29 "csexp" 30 "menhir" {with-test} 31 "cinaps" {with-test} 32 "ppx_expect" {with-test & >= "v0.14.0"} 33 "ocaml" {>= "4.06" & < "4.12"} 34 "dune" {>= "2.5"} 35] 36dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git" 37build: [ 38 ["dune" "subst"] {dev} 39 ["ocaml" "unix.cma" "unvendor.ml"] 40 [ 41 "dune" 42 "build" 43 "-p" 44 name 45 "-j" 46 jobs 47 "@install" 48 "@doc" {with-doc} 49 ] 50] 51x-commit-hash: "45ebc4ee009f1588eaf5d5a2d0e5137be937501e" 52url { 53 src: 54 "https://github.com/ocaml/ocaml-lsp/releases/download/1.2.0/jsonrpc-1.2.0.tbz" 55 checksum: [ 56 "sha256=e4e56590b9af02160e5af7733763897d7cfe3f9b876692af4d4184ab0fce4bcb" 57 "sha512=724d5190a678ca8a3f3c13915cbfcf8d3cce8efa43e0dde130b14c45065b6ccd22507951e79977bcecf361c7928f271d312b87642bb2c52f33669c3e952a7e1b" 58 ] 59}