forked from ocaml/ocaml-lsp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dune-project
76 lines (69 loc) · 1.69 KB
/
dune-project
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
(lang dune 2.9)
(using menhir 2.0)
(using cinaps 1.0)
(name lsp)
(implicit_transitive_deps false)
(license ISC)
(maintainers "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]>"
"Ulugbek Abdullaev <[email protected]>"
"Thibaut Mattio <[email protected]>"
"Max Lantas <[email protected]>")
(source (github ocaml/ocaml-lsp))
(generate_opam_files true)
(package
(name lsp)
(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.
")
(depends
(jsonrpc (= :version))
dyn
yojson
(ppx_yojson_conv_lib (>= "v0.14"))
(cinaps :with-test)
(menhir (>= 20211230 :with-test))
(ppx_expect (>= v0.15.0 :with-test))
(uutf (>= 1.0.2))
(odoc :with-doc)
(ocaml (>= 4.12))))
(package
(name ocaml-lsp-server)
(synopsis "LSP Server for OCaml")
(description "An LSP server for OCaml.")
(depends
yojson
(re (>= 1.5.0))
(ppx_yojson_conv_lib (>= "v0.14"))
dune-rpc
dyn
stdune
(fiber (>= 3.1.1))
xdg
ordering
dune-build-info
spawn
(omd (<= 1.3.1))
(octavius (>= 1.2.2))
(uutf (>= 1.0.2))
(pp (>= 1.1.2))
(csexp (>= 1.5))
(ocamlformat-rpc-lib (>= 0.21.0))
(odoc :with-doc)
(ocaml (and (>= 4.14) (< 4.15)))))
(package
(name jsonrpc)
(synopsis "Jsonrpc protocol implemenation")
(description "See https://www.jsonrpc.org/specification")
(depends
(ocaml (>= 4.08))
(odoc :with-doc)))