this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #18968 from rgrinberg/release-lsp-1.7.0

[new release] ocaml-lsp-server, lsp and jsonrpc (1.7.0)

authored by

Anil Madhavapeddy and committed by
GitHub
39dda487 229a4427

+154
+45
packages/jsonrpc/jsonrpc.1.7.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Jsonrpc protocol implemenation" 3 + description: "See https://www.jsonrpc.org/specification" 4 + maintainer: ["Rudi Grinberg <me@rgrinerg.com>"] 5 + authors: [ 6 + "Andrey Popp <8mayday@gmail.com>" 7 + "Rusty Key <iam@stfoo.ru>" 8 + "Louis Roché <louis@louisroche.net>" 9 + "Oleksiy Golovko <alexei.golovko@gmail.com>" 10 + "Rudi Grinberg <me@rgrinberg.com>" 11 + "Sacha Ayoun <sachaayoun@gmail.com>" 12 + "cannorin <cannorin@gmail.com>" 13 + ] 14 + license: "ISC" 15 + homepage: "https://github.com/ocaml/ocaml-lsp" 16 + bug-reports: "https://github.com/ocaml/ocaml-lsp/issues" 17 + depends: [ 18 + "dune" {>= "2.7"} 19 + "ocaml" {>= "4.08"} 20 + "odoc" {with-doc} 21 + ] 22 + dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git" 23 + build: [ 24 + ["dune" "subst"] {dev} 25 + ["ocaml" "unix.cma" "unvendor.ml"] 26 + [ 27 + "dune" 28 + "build" 29 + "-p" 30 + name 31 + "-j" 32 + jobs 33 + "@install" 34 + "@doc" {with-doc} 35 + ] 36 + ] 37 + x-commit-hash: "c728032b4717c265aa364314288d67bd722b9ce9" 38 + url { 39 + src: 40 + "https://github.com/ocaml/ocaml-lsp/releases/download/1.7.0/jsonrpc-1.7.0.tbz" 41 + checksum: [ 42 + "sha256=ca43b6608366ddf891d7c1e1cc38de2c7f93a6da0511de164959db1f88fc42ed" 43 + "sha512=43a00604f25bd1d3e93bfd43f1ef9c4cad9aa392c15a5db0c5ba0264f396e7ca6f60a0293467609402e87aeec441a05e7ee2990b37c98dc27b92a22afbebfd02" 44 + ] 45 + }
+58
packages/lsp/lsp.1.7.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "LSP protocol implementation in OCaml" 3 + description: """ 4 + 5 + Implementation of the LSP protocol in OCaml. It is designed to be as portable as 6 + possible and does not make any assumptions about IO. 7 + """ 8 + maintainer: ["Rudi Grinberg <me@rgrinerg.com>"] 9 + authors: [ 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 + ] 18 + license: "ISC" 19 + homepage: "https://github.com/ocaml/ocaml-lsp" 20 + bug-reports: "https://github.com/ocaml/ocaml-lsp/issues" 21 + depends: [ 22 + "dune" {>= "2.7"} 23 + "jsonrpc" {= version} 24 + "yojson" 25 + "ppx_yojson_conv_lib" {>= "v0.14"} 26 + "pp" 27 + "csexp" {>= "1.4"} 28 + "uutf" 29 + "odoc" {with-doc} 30 + "menhir" {with-test} 31 + "cinaps" {with-test} 32 + "ppx_expect" {with-test & >= "v0.14.0"} 33 + "ocaml" {>= "4.12"} 34 + ] 35 + dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git" 36 + build: [ 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 + ] 50 + x-commit-hash: "c728032b4717c265aa364314288d67bd722b9ce9" 51 + url { 52 + src: 53 + "https://github.com/ocaml/ocaml-lsp/releases/download/1.7.0/jsonrpc-1.7.0.tbz" 54 + checksum: [ 55 + "sha256=ca43b6608366ddf891d7c1e1cc38de2c7f93a6da0511de164959db1f88fc42ed" 56 + "sha512=43a00604f25bd1d3e93bfd43f1ef9c4cad9aa392c15a5db0c5ba0264f396e7ca6f60a0293467609402e87aeec441a05e7ee2990b37c98dc27b92a22afbebfd02" 57 + ] 58 + }
+51
packages/ocaml-lsp-server/ocaml-lsp-server.1.7.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "LSP Server for OCaml" 3 + description: "An LSP server for OCaml." 4 + maintainer: ["Rudi Grinberg <me@rgrinerg.com>"] 5 + authors: [ 6 + "Andrey Popp <8mayday@gmail.com>" 7 + "Rusty Key <iam@stfoo.ru>" 8 + "Louis Roché <louis@louisroche.net>" 9 + "Oleksiy Golovko <alexei.golovko@gmail.com>" 10 + "Rudi Grinberg <me@rgrinberg.com>" 11 + "Sacha Ayoun <sachaayoun@gmail.com>" 12 + "cannorin <cannorin@gmail.com>" 13 + ] 14 + license: "ISC" 15 + homepage: "https://github.com/ocaml/ocaml-lsp" 16 + bug-reports: "https://github.com/ocaml/ocaml-lsp/issues" 17 + depends: [ 18 + "dune" {>= "2.7"} 19 + "yojson" 20 + "re" 21 + "ppx_yojson_conv_lib" {>= "v0.14"} 22 + "dune-build-info" 23 + "dot-merlin-reader" 24 + "pp" {>= "1.1.2"} 25 + "csexp" {>= "1.4"} 26 + "result" {>= "1.5"} 27 + "ocamlformat" {with-test} 28 + "odoc" {with-doc} 29 + "ocaml" {>= "4.12" & < "4.13"} 30 + ] 31 + dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git" 32 + build: [ 33 + ["dune" "subst"] {dev} 34 + [ 35 + "dune" 36 + "build" 37 + "-j" 38 + jobs 39 + "ocaml-lsp-server.install" 40 + "--release" 41 + ] 42 + ] 43 + x-commit-hash: "c728032b4717c265aa364314288d67bd722b9ce9" 44 + url { 45 + src: 46 + "https://github.com/ocaml/ocaml-lsp/releases/download/1.7.0/jsonrpc-1.7.0.tbz" 47 + checksum: [ 48 + "sha256=ca43b6608366ddf891d7c1e1cc38de2c7f93a6da0511de164959db1f88fc42ed" 49 + "sha512=43a00604f25bd1d3e93bfd43f1ef9c4cad9aa392c15a5db0c5ba0264f396e7ca6f60a0293467609402e87aeec441a05e7ee2990b37c98dc27b92a22afbebfd02" 50 + ] 51 + }