-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdune-project
77 lines (65 loc) · 1.25 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
(lang dune 3.0)
(version 0.1)
(name razzia)
(license "LGPL-3.0")
(authors "The razzia programmers")
(maintainers "[email protected]" "[email protected]")
(source
(github Psi-Prod/Razzia))
(homepage "https://github.com/Psi-Prod/Razzia")
(generate_opam_files true)
(package
(name razzia)
(synopsis "A cross-platform library for building Gemini client")
(description "A cross-platform library for building Gemini client")
(depends
(ocaml
(>= 4.14))
(mirage-clock
(>= 4.2.0))
(uri
(>= 4.2.0))
(re
(>= 1.10.4))
(tls
(>= 0.16.0))
(x509
(>= 0.16.4))))
(package
(name razzia-mirage)
(synopsis "Razzia IO implementation for MirageOS")
(depends
razzia
(dns-client-mirage
(>= 7.0.0))
(mirage-channel
(>= 4.1.0))
(tls-lwt
(>= 0.15.4))
(tls-mirage
(>= 0.15.4))))
(package
(name razzia-unix)
(synopsis "Razzia IO implementation using UNIX bindings")
(depends
razzia
razzia-mirage
(mirage-clock-unix
(>= 4.2.0))
(mirage-random-stdlib
(>= 0.1.0))
(mirage-time-unix
(>= 3.0.0))
(tcpip
(>= 7.1.2))))
(package
(name razzia-eio)
(synopsis "Razzia IO implementation using Eio")
(depends
razzia
(eio
(>= 0.6))
(mirage-clock-unix
(>= 4.2.0))
(tls-eio
(>= 0.15.5))))