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 "ppx_expect" {>= "v0.17.0" & with-test}
31 "uutf" {>= "1.0.2"}
32 "odoc" {with-doc}
33 "ocaml" {>= "4.14"}
34 "ppx_yojson_conv" {with-dev-setup}
35]
36dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git"
37build: [
38 ["dune" "subst"] {dev}
39 [
40 "dune"
41 "build"
42 "-p"
43 name
44 "-j"
45 jobs
46 "@install"
47 "@doc" {with-doc}
48 ]
49]
50
51x-maintenance-intent: [ "(latest)" "(latest)-414" ]
52url {
53 src:
54 "https://github.com/ocaml/ocaml-lsp/releases/download/1.21.0/lsp-1.21.0.tbz"
55 checksum: [
56 "sha256=67870337ff23d0d2ba43774bfb58a8fde04977ea37da4d2dc500ed0b57cef717"
57 "sha512=e0f9abdcfc96c13d043b7e31ffc9991be52c4160dade5f71b277c7d8091d7271f5998abb6b30557955ba1615a4cc096b89ab5038da6b4e4e722fb598a0ff8ea8"
58 ]
59}
60x-commit-hash: "643f59044f8fad14eb32cd52810008cf012c3008"