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: "92924b6e36a91ce323b7f8eddfe20def4173e6e5" 53url { 54 src: 55 "https://github.com/ocaml/ocaml-lsp/releases/download/1.4.0/jsonrpc-1.4.0.tbz" 56 checksum: [ 57 "sha256=fd138e6c4fcff32c6d15eb66cc9391b7e1183717a6d1a47c688c7f6d320a159f" 58 "sha512=567a73b3c10bb59c5a4d4e8291d1aeefdfd34438a95313fba8a485638294ca5fb8034334719631243c304d3328c27afa90dfd564fdb1e7390507a06db3a4ad03" 59 ] 60}