this repo has no description
1opam-version: "2.0"
2synopsis: "LSP protocol implementation in OCaml"
3description: """
4Implementation of the LSP protocol in OCaml. It is designed to be as portable as
5possible and does not make any assumptions about IO.
6"""
7maintainer: ["Rudi Grinberg <me@rgrinerg.com>"]
8authors: [
9 "Andrey Popp <8mayday@gmail.com>"
10 "Rusty Key <iam@stfoo.ru>"
11 "Louis Roché <louis@louisroche.net>"
12 "Oleksiy Golovko <alexei.golovko@gmail.com>"
13 "Rudi Grinberg <me@rgrinberg.com>"
14 "Sacha Ayoun <sachaayoun@gmail.com>"
15 "cannorin <cannorin@gmail.com>"
16 "Ulugbek Abdullaev <ulugbekna@gmail.com>"
17 "Thibaut Mattio <thibaut.mattio@gmail.com>"
18 "Max Lantas <mnxndev@outlook.com>"
19]
20license: "ISC"
21homepage: "https://github.com/ocaml/ocaml-lsp"
22bug-reports: "https://github.com/ocaml/ocaml-lsp/issues"
23depends: [
24 "dune" {>= "2.9"}
25 "jsonrpc" {= version}
26 "yojson"
27 "ppx_yojson_conv_lib" {>= "v0.14"}
28 "pp" {< "2.0.0"}
29 "csexp" {>= "1.5"}
30 "uutf"
31 "odoc" {with-doc}
32 "ocaml" {>= "4.12"}
33 "result"
34]
35dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git"
36build: [
37 ["dune" "subst"] {dev}
38 ["ocaml" "unix.cma" "unvendor.ml"]
39 [
40 "dune"
41 "build"
42 "-p"
43 name
44 "-j"
45 jobs
46 "@install"
47 "@doc" {with-doc}
48 ]
49]
50url {
51 src:
52 "https://github.com/ocaml/ocaml-lsp/releases/download/1.9.1/jsonrpc-1.9.1.tbz"
53 checksum: [
54 "sha256=cf1cdb257d4ef1ed1a05e951264b11c7dc7d3066bf448111cb17c67be56ddcee"
55 "sha512=1f073db86a8d44e5a4501f0d5c233f07f2dd4e8dd6abb918ef50846031af63e4ab9b408fffd9b32d1a7e9e5c7343c9b6ce97b07effed8359f7b610818f78e967"
56 ]
57}
58x-commit-hash: "435d22d25561b36010e4c6c07d52e413d4063bdf"