this repo has no description
1opam-version: "2.0" 2synopsis: "LSP Server for OCaml" 3description: "An LSP server for OCaml." 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 "ppx_yojson_conv_lib" 22 "dune-build-info" 23 "dot-merlin-reader" 24 "csexp" {>= "1.2.3"} 25 "result" {>= "1.5"} 26 "ocamlformat" {with-test} 27 "ocamlfind" {>= "1.5.2"} 28 "odoc" {with-doc} 29 "ocaml" {>= "4.12" & < "4.13"} 30] 31build: [ 32 ["dune" "subst"] {dev} 33 ["dune" "build" "-j" jobs "ocaml-lsp-server.install" "--release"] 34] 35dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git" 36url { 37 src: 38 "https://github.com/ocaml/ocaml-lsp/releases/download/1.5.0/jsonrpc-1.5.0.tbz" 39 checksum: [ 40 "md5=2c19731536a4f62923554c1947c39211" 41 "sha512=9bc252e2564fe6c9017b5ee1b2c4ddebf73c4be4b2a3d48f1d61b6ec1910a2cb9f4fa4952a7a6d89482c28ddbad8e0d9c34c206a1b2fe42bb2c3a7156aa953e9" 42 ] 43}