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.15.0" & < "v0.17.0" & with-test} 31 "uutf" {>= "1.0.2"} 32 "odoc" {with-doc} 33 "ocaml" {>= "4.14"} 34] 35dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git" 36build: [ 37 ["dune" "subst"] {dev} 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.19.0/lsp-1.19.0.tbz" 52 checksum: [ 53 "sha256=e783d9f1a7f89ce1bf4c9148aa34a228368bd149bbcca43de80b459221dee5ec" 54 "sha512=85c233a7a14d38e76b3d28694054b04fb818290d2c4c009e7ce189040e2aab570ee0caaf1a826b064fb1595f29b696932daea9f6812d3dfa9b6f0387e02e254b" 55 ] 56} 57x-commit-hash: "45f5ddac12bb580b4ecaec2d93ee7fac2c903aff"