Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LSP: migrate to ppx_protocol_conv #948

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion merlin-lsp.opam
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ depends: [
"dune" {build & >= "1.8.0"}
"ocamlfind" {>= "1.5.2"}
"yojson"
"ppx_deriving_yojson"
"ppx_protocol_conv_json" {>= "5.0.0"}
"mdx" {test & >= "1.3.0"}
]

Expand Down
4 changes: 2 additions & 2 deletions src/lsp/dune
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(library
(name lsp)
(libraries merlin_utils yojson ppx_deriving_yojson.runtime threads)
(preprocess (pps ppx_deriving_yojson)))
(libraries merlin_utils yojson ppx_protocol_conv_json threads)
(preprocess (pps ppx_protocol_conv)))

(ocamllex (modules text_document_text))
Loading