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.7"} 23 "jsonrpc" {= version} 24 "yojson" 25 "ppx_yojson_conv_lib" {>= "v0.14"} 26 "pp" {< "2.0.0"} 27 "csexp" {>= "1.4"} 28 "uutf" 29 "result" {>= "1.5"} 30 "odoc" {with-doc} 31 "menhir" {with-test} 32 "cinaps" {with-test} 33 "ppx_expect" {with-test & >= "v0.14.0"} 34 "ocaml" {>= "4.12"} 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: "c728032b4717c265aa364314288d67bd722b9ce9" 52url { 53 src: 54 "https://github.com/ocaml/ocaml-lsp/releases/download/1.7.0/jsonrpc-1.7.0.tbz" 55 checksum: [ 56 "sha256=ca43b6608366ddf891d7c1e1cc38de2c7f93a6da0511de164959db1f88fc42ed" 57 "sha512=43a00604f25bd1d3e93bfd43f1ef9c4cad9aa392c15a5db0c5ba0264f396e7ca6f60a0293467609402e87aeec441a05e7ee2990b37c98dc27b92a22afbebfd02" 58 ] 59}