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@rgrinerg.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" {>= "2.9"}
26 "jsonrpc" {= version}
27 "dyn"
28 "yojson"
29 "ppx_yojson_conv_lib" {>= "v0.14"}
30 "uutf" {>= "1.0.2"}
31 "odoc" {with-doc}
32 "ocaml" {>= "4.12"}
33]
34dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git"
35build: [
36 ["dune" "subst"] {dev}
37 ["ocaml" "unix.cma" "unvendor.ml"]
38 [
39 "dune"
40 "build"
41 "-p"
42 name
43 "-j"
44 jobs
45 "@install"
46 "@doc" {with-doc}
47 ]
48]
49url {
50 src:
51 "https://github.com/ocaml/ocaml-lsp/releases/download/1.11.2/jsonrpc-1.11.2.tbz"
52 checksum: [
53 "sha256=f7cabf3308abe80b555f57e53fd730e4994939d7a53698580bde4b0935f291ee"
54 "sha512=fa38b3186ce4eed6b9aad6416552fd8b916eb6f544821bae072508db6da04c0942a10733598cd22fc076b46f334dff0c10f35f38797d6eb188bfb1236f2f1217"
55 ]
56}
57x-commit-hash: "dd0788436b7b4e55af4b67b97ccdc5c24885325f"