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] 18license: "ISC" 19homepage: "https://github.com/ocaml/ocaml-lsp" 20bug-reports: "https://github.com/ocaml/ocaml-lsp/issues" 21depends: [ 22 "dune" {>= "2.7"} 23 "jsonrpc" {= version} 24 "yojson" 25 "ppx_yojson_conv_lib" 26 "csexp" 27 "uutf" 28 "result" {>= "1.5"} 29 "odoc" {with-doc} 30 "menhir" {with-test} 31 "cinaps" {with-test} 32 "ppx_expect" {with-test & >= "v0.14.0"} 33 "ocaml" {>= "4.08"} 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] 50x-commit-hash: "6fc037f1700400c04c25f5acd1b33d54fcd19d0c" 51url { 52 src: 53 "https://github.com/ocaml/ocaml-lsp/releases/download/1.6.0/jsonrpc-1.6.0.tbz" 54 checksum: [ 55 "sha256=35e8c7341f8eb1fa39fb0f0e0701a7ed90b9a0bb89ccf84b7ed997cd258cbec3" 56 "sha512=c96a7a3ca845ec193e9edc4a74804a22d6e37efc852b54575011879bd2105e0df021408632219f542ca3ad85b36b5c8b72f2b417204d154d5f0dd0839535afa5" 57 ] 58}