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 "yojson" 28 "ppx_yojson_conv_lib" {>= "v0.14"} 29 "pp" {< "2.0.0"} 30 "csexp" {>= "1.5"} 31 "uutf" 32 "odoc" {with-doc} 33 "ocaml" {>= "4.12"} 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.10.3/jsonrpc-1.10.3.tbz" 53 checksum: [ 54 "sha256=a3ac1073b0728b94f4bdb0111772c0abaf7ff70324399450eab7156bfac151f1" 55 "sha512=bed6ddbde28088e43db0d40ab27056ba22537d19ffe8117a3da4c77676948f18708b06937dd2c972dce5c5822ea751c9c85cfa1ce3c1b3739460d4a24ebc2282" 56 ] 57} 58x-commit-hash: "a249e618facf7b7f524bf96e6f1cf6728a7fcd90"