forked from ocaml/ocaml-lsp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlsp.opam.locked
82 lines (82 loc) · 2.66 KB
/
lsp.opam.locked
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
opam-version: "2.0"
name: "lsp"
version: "dev"
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: [
"base" {= "v0.14.0" & with-test}
"base-bigarray" {= "base"}
"base-threads" {= "base"}
"base-unix" {= "base"}
"biniou" {= "1.2.1"}
"cinaps" {= "v0.14.0" & with-test}
"cmdliner" {= "1.0.4"}
"conf-m4" {= "1"}
"cppo" {= "1.6.6"}
"csexp" {= "1.3.2"}
"dune" {= "2.7.1"}
"dune-configurator" {= "2.7.1" & with-test}
"easy-format" {= "1.3.2"}
"jane-street-headers" {= "v0.14.0" & with-test}
"jsonrpc" {= "dev"}
"jst-config" {= "v0.14.0" & with-test}
"menhir" {= "20201122" & with-test}
"menhirLib" {= "20201122" & with-test}
"menhirSdk" {= "20201122" & with-test}
"ocaml" {= "4.11.1"}
"ocaml-compiler-libs" {= "v0.12.3" & with-test}
"ocaml-config" {= "1"}
"ocaml-migrate-parsetree" {= "2.1.0" & with-test}
"ocaml-syntax-shims" {= "1.0.0"}
"ocaml-system" {= "4.11.1"}
"ocamlbuild" {= "0.14.0"}
"ocamlfind" {= "1.8.1"}
"octavius" {= "1.2.2" & with-test}
"ppx_assert" {= "v0.14.0" & with-test}
"ppx_base" {= "v0.14.0" & with-test}
"ppx_cold" {= "v0.14.0" & with-test}
"ppx_compare" {= "v0.14.0" & with-test}
"ppx_derivers" {= "1.2.1" & with-test}
"ppx_enumerate" {= "v0.14.0" & with-test}
"ppx_expect" {= "v0.14.1" & with-test}
"ppx_hash" {= "v0.14.0" & with-test}
"ppx_here" {= "v0.14.0" & with-test}
"ppx_inline_test" {= "v0.14.1" & with-test}
"ppx_js_style" {= "v0.14.0" & with-test}
"ppx_optcomp" {= "v0.14.1" & with-test}
"ppx_sexp_conv" {= "v0.14.2" & with-test}
"ppx_yojson_conv_lib" {= "v0.14.0"}
"ppxlib" {= "0.20.0" & with-test}
"re" {= "1.9.0" & with-test}
"result" {= "1.5"}
"seq" {= "base" & with-test}
"sexplib0" {= "v0.14.0" & with-test}
"stdio" {= "v0.14.0" & with-test}
"stdlib-shims" {= "0.1.0"}
"time_now" {= "v0.14.0" & with-test}
"topkg" {= "1.0.3"}
"uchar" {= "0.0.2"}
"uutf" {= "1.0.2"}
"yojson" {= "1.7.0"}
]
build: [
["dune" "subst"] {dev}
["ocaml" "unix.cma" "unvendor.ml"]
["dune" "build" "-p" name "-j" jobs "@install" "@doc" {with-doc}]
]
dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git"