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."""
6maintainer: "Rudi Grinberg <me@rgrinerg.com>"
7authors: [
8 "Andrey Popp <8mayday@gmail.com>"
9 "Rusty Key <iam@stfoo.ru>"
10 "Louis Roché <louis@louisroche.net>"
11 "Oleksiy Golovko <alexei.golovko@gmail.com>"
12 "Rudi Grinberg <me@rgrinberg.com>"
13 "Sacha Ayoun <sachaayoun@gmail.com>"
14 "cannorin <cannorin@gmail.com>"
15]
16license: "ISC"
17homepage: "https://github.com/ocaml/ocaml-lsp"
18bug-reports: "https://github.com/ocaml/ocaml-lsp/issues"
19depends: [
20 "dune" {>= "2.5"}
21 "stdlib-shims"
22 "jsonrpc" {= version}
23 "yojson"
24 "ppx_yojson_conv_lib"
25 "ocaml-syntax-shims"
26 "cppo"
27 "uutf"
28 "csexp"
29 "odoc" {with-doc}
30 "menhir" {with-test}
31 "cinaps" {with-test}
32 "ppx_expect" {with-test & >= "v0.14.0"}
33 "ocaml" {>= "4.06"}
34]
35build: [
36 ["dune" "subst"] {dev}
37 ["ocaml" "unix.cma" "unvendor.ml"]
38 ["dune" "build" "-p" name "-j" jobs "@install" "@doc" {with-doc}]
39]
40dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git"
41url {
42 src:
43 "https://github.com/ocaml/ocaml-lsp/releases/download/1.5.0/jsonrpc-1.5.0.tbz"
44 checksum: [
45 "md5=2c19731536a4f62923554c1947c39211"
46 "sha512=9bc252e2564fe6c9017b5ee1b2c4ddebf73c4be4b2a3d48f1d61b6ec1910a2cb9f4fa4952a7a6d89482c28ddbad8e0d9c34c206a1b2fe42bb2c3a7156aa953e9"
47 ]
48}