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" 24depends: [ 25 "dune" {>= "3.0"} 26 "jsonrpc" {= version} 27 "yojson" 28 "ppx_yojson_conv_lib" {>= "v0.14"} 29 "cinaps" {with-test} 30 "menhir" {>= "20211230" & with-test} 31 "ppx_expect" {>= "v0.15.0" & with-test} 32 "uutf" {>= "1.0.2"} 33 "odoc" {with-doc} 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] 51url { 52 src: 53 "https://github.com/ocaml/ocaml-lsp/releases/download/1.13.0/lsp-1.13.0.tbz" 54 checksum: [ 55 "sha256=e09f8a15f7c911085c30fdbdcf55584c93dcac34f6573bd58838bacc126de5bf" 56 "sha512=0029a7c777385641a7ab0ebcf1b7e04db42af1f8e5be1598e1ea0ec4b8e3b4c4af1436c1bcaeffd5da5d39cf19f224cc26caa34498fbea6fdfbe29c1000a834f" 57 ] 58} 59x-commit-hash: "f3370f03236c7bcea38693ea7cf36cee1d8fe692"