forked from ocaml/opam-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[new release] ocaml-lsp-server and lsp (1.1.0)
CHANGES: ## Features - Implement a command to switch between module interfaces and implementations (ocaml/ocaml-lsp#254) ## Fixes - Do not crash on invalid positions (ocaml/ocaml-lsp#248) - add missing record fields to list of completions (ocaml/ocaml-lsp#253) - do not offer `destruct` as a code action in interface files (ocaml/ocaml-lsp#255)
- Loading branch information
Showing
2 changed files
with
108 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
opam-version: "2.0" | ||
synopsis: "LSP protocol implementation in OCaml" | ||
description: """ | ||
|
||
Implementation of the LSP protocol in OCaml. It is designed to be as portable as | ||
possible and does not make any assumptions about IO. | ||
""" | ||
maintainer: ["Rudi Grinberg <[email protected]>"] | ||
authors: [ | ||
"Andrey Popp <[email protected]>" | ||
"Rusty Key <[email protected]>" | ||
"Louis Roché <[email protected]>" | ||
"Oleksiy Golovko <[email protected]>" | ||
"Rudi Grinberg <[email protected]>" | ||
"Sacha Ayoun <[email protected]>" | ||
"cannorin <[email protected]>" | ||
] | ||
license: "ISC" | ||
homepage: "https://github.com/ocaml/ocaml-lsp" | ||
bug-reports: "https://github.com/ocaml/ocaml-lsp/issues" | ||
depends: [ | ||
"stdlib-shims" | ||
"yojson" | ||
"ppx_yojson_conv_lib" | ||
"ocaml-syntax-shims" | ||
"cppo" | ||
"uutf" | ||
"csexp" | ||
"menhir" {with-test} | ||
"cinaps" {with-test} | ||
"ppx_expect" {with-test & >= "v0.14.0"} | ||
"ocaml" {>= "4.06"} | ||
"dune" {>= "2.0"} | ||
] | ||
dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git" | ||
build: [ | ||
["dune" "subst"] {pinned} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@doc" {with-doc} | ||
] | ||
] | ||
x-commit-hash: "fee074471b2c345f7e42c6ed3482363279d4f32c" | ||
url { | ||
src: | ||
"https://github.com/ocaml/ocaml-lsp/releases/download/1.1.0/ocaml-lsp-server-1.1.0.tbz" | ||
checksum: [ | ||
"sha256=fa0ca1d3c5c3377f798c221381228a65e8f49fece42715d279ebe91f2f4f74c8" | ||
"sha512=c00ad47478a4ddfebe3798895700d2bececa29a610c7757619f47a5b90ede921afa56efc776df3a1c4a8b2f082898423a5806d00c041dae137da1b57ee487a9b" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
opam-version: "2.0" | ||
synopsis: "LSP Server for OCaml" | ||
description: "An LSP server for OCaml." | ||
maintainer: ["Rudi Grinberg <[email protected]>"] | ||
authors: [ | ||
"Andrey Popp <[email protected]>" | ||
"Rusty Key <[email protected]>" | ||
"Louis Roché <[email protected]>" | ||
"Oleksiy Golovko <[email protected]>" | ||
"Rudi Grinberg <[email protected]>" | ||
"Sacha Ayoun <[email protected]>" | ||
"cannorin <[email protected]>" | ||
] | ||
license: "ISC" | ||
homepage: "https://github.com/ocaml/ocaml-lsp" | ||
bug-reports: "https://github.com/ocaml/ocaml-lsp/issues" | ||
depends: [ | ||
"yojson" | ||
"stdlib-shims" | ||
"menhir" | ||
"ppx_yojson_conv_lib" | ||
"dune-build-info" | ||
"csexp" {>= "1.2.3"} | ||
"result" {>= "1.5"} | ||
"ocamlformat" {with-test} | ||
"reason" {with-test} | ||
"ocamlfind" {>= "1.5.2"} | ||
"ocaml" {>= "4.06"} | ||
"dune" {>= "2.5.0"} | ||
] | ||
dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git" | ||
build: [ | ||
["dune" "subst"] {pinned} | ||
[ | ||
"dune" | ||
"build" | ||
"-j" | ||
jobs | ||
"ocaml-lsp-server.install" | ||
"--release" | ||
] | ||
] | ||
x-commit-hash: "fee074471b2c345f7e42c6ed3482363279d4f32c" | ||
url { | ||
src: | ||
"https://github.com/ocaml/ocaml-lsp/releases/download/1.1.0/ocaml-lsp-server-1.1.0.tbz" | ||
checksum: [ | ||
"sha256=fa0ca1d3c5c3377f798c221381228a65e8f49fece42715d279ebe91f2f4f74c8" | ||
"sha512=c00ad47478a4ddfebe3798895700d2bececa29a610c7757619f47a5b90ede921afa56efc776df3a1c4a8b2f082898423a5806d00c041dae137da1b57ee487a9b" | ||
] | ||
} |