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@rgrinberg.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 "Ulugbek Abdullaev <ulugbekna@gmail.com>" 18 "Thibaut Mattio <thibaut.mattio@gmail.com>" 19 "Max Lantas <mnxndev@outlook.com>" 20] 21license: "ISC" 22homepage: "https://github.com/ocaml/ocaml-lsp" 23bug-reports: "https://github.com/ocaml/ocaml-lsp/issues" 24flags: avoid-version 25depends: [ 26 "dune" {>= "3.0"} 27 "jsonrpc" {= version} 28 "yojson" 29 "ppx_yojson_conv_lib" {>= "v0.14"} 30 "cinaps" {with-test} 31 "menhir" {>= "20211230" & with-test} 32 "ppx_expect" {>= "v0.15.0" & with-test} 33 "uutf" {>= "1.0.2"} 34 "odoc" {with-doc} 35 "ocaml" {>= "4.12"} 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] 52url { 53 src: 54 "https://github.com/ocaml/ocaml-lsp/releases/download/1.15.0%2B5.0preview1/lsp-1.15.0.5.0preview1.tbz" 55 checksum: [ 56 "sha256=e988a9de9a3e809ac1005c1eafd8f5825842edb8e92d05199110b682968c102c" 57 "sha512=a581a81b19b2d33e4ccf45d042b889164965bdefdbba06a5af8959052a0b515ede09fc8d75c25d8795777c61c39a299930fe3dbc3d69a561b6065f6629baa0a6" 58 ] 59} 60x-commit-hash: "a2779a1e8fa244a2d2002fc872f8672f6e7ca067"