-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathdune-project
104 lines (99 loc) · 2.35 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
(lang dune 3.7)
(name ocaml-matrix)
(license "ISC")
(authors "Gwenaëlle Lecat <[email protected]>")
(maintainers "Gwenaëlle Lecat <[email protected]>")
(source (github mirage/ocaml-matrix))
(documentation "https://mirage.github.io/ocaml-matrix")
(generate_opam_files true)
(formatting disabled)
(package
(name matrix-ci-server)
(synopsis "A minimalist matrix server for the hosting of CI trigerred messages")
(description "A minimalist matrix server for the hosting of CI trigerred messages")
(tags ("org:mirage"))
(depends
(ocaml (>= 4.11))
(matrix-ctos (= :version))
(matrix-stos (= :version))
dream-mirage
(lwt_ppx (>= 2.1.0))
astring
base64
bheap
(cmdliner (>= 1.1.0))
ezjsonm
fmt
(irmin-fs (>= 3.0))
(irmin-git (>= 3.6))
logs
(tcpip (>= 7.0.0))
mirage-crypto-ec
mirage-time
mirage-time-unix
mirage-clock-unix
mirage-crypto-rng-mirage
mirage-kv
ca-certs-nss
(ppxlib (>= 0.16.0))
uuidm
x509
(shexp :with-test)))
(package
(name matrix-common)
(synopsis "Core library of the matrix spec")
(description "Core library of the matrix spec")
(tags ("org:mirage"))
(depends
(ocaml (>= 4.11))
ezjsonm
fmt
logs
(cmdliner (>= 1.1.0))
(ppxlib (>= 0.16.0))))
(package
(name matrix-ctos)
(synopsis "Library for the client to server endpoints of matrix protocole")
(description "Library for the client to server endpoints of matrix protocole")
(tags ("org:mirage"))
(depends
(ocaml (>= 4.11))
(matrix-common (= :version))
ezjsonm
fmt
logs
(ppxlib (>= 0.16.0))))
(package
(name matrix-stos)
(synopsis "Library for the server to server endpoints of matrix protocole")
(description "Library for the server to server endpoints of matrix protocole")
(tags ("org:mirage"))
(depends
(ocaml (>= 4.11))
(matrix-common (= :version))
ezjsonm
fmt
logs
mirage-crypto-ec
x509
(ppxlib (>= 0.16.0))))
(package
(name matrix-current)
(synopsis "A minimalist matrix client for an ocurrent plugin")
(description "A minimalist matrix client for an ocurrent plugin")
(tags ("org:mirage"))
(depends
(ocaml (>= 4.11))
(matrix-ctos (= :version))
(current (>= 0.6.4))
cohttp
cohttp-lwt
cohttp-lwt-unix
ezjsonm
fmt
logs
(lwt (>= 5.6.1))
(ppxlib (>= 0.16.0))
uuidm
(ppx_deriving_yojson (>= 3.7.0))
(shexp :with-test)))