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 "dyn" 28 "yojson" 29 "uri" {>= "4.0.0"} 30 "ppx_yojson_conv_lib" {>= "v0.14"} 31 "cinaps" {with-test} 32 "menhir" {>= "20211230" & with-test} 33 "ppx_expect" {>= "v0.15.0" & with-test} 34 "uutf" {>= "1.0.2"} 35 "odoc" {with-doc} 36 "ocaml" {>= "4.12"} 37] 38dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git" 39build: [ 40 ["dune" "subst"] {dev} 41 ["ocaml" "unix.cma" "unvendor.ml"] 42 [ 43 "dune" 44 "build" 45 "-p" 46 name 47 "-j" 48 jobs 49 "@install" 50 "@doc" {with-doc} 51 ] 52] 53url { 54 src: 55 "https://github.com/ocaml/ocaml-lsp/releases/download/1.12.3/lsp-1.12.3.tbz" 56 checksum: [ 57 "sha256=6ef4a5445ba53baf1cf18a59fb712cc20d3d3257d0ce7d8f0e24408bf0aadbf3" 58 "sha512=33156e369c2b539767c382644d020627fc925eceae4552cc14a361254d2dbae3d6261d502d717e98709c1e1a74c73f10d8e66ac3f26c781d0080b330bb46eb9d" 59 ] 60} 61x-commit-hash: "3ea0bb30ba32bbf0b79934d06266b16f873169c1"