-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdune-project
104 lines (94 loc) · 1.79 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.13)
(name coap)
(generate_opam_files true)
(source
(github hyper-systems/ocaml-coap))
(authors "Rizo I. <[email protected]>")
(maintainers "Rizo I. <[email protected]>" "Leo Soares <[email protected]>")
(license ISC)
(documentation https://hyper-systems.github.io/ocaml-coap)
(package
(name coap)
(synopsis "OCaml CoAP core library")
(description
"Constrained Application Protocol (RFC 7252) implementation for OCaml.")
(depends
(ocaml
(>= 4.08.0))
dune
(coap-core
(= :version))
(coap-server-lwt
(= :version))
(fmt
(>= 0.9.0))
(cstruct
(>= 6.2.0))
(stdint
(>= 0.7.2))
(lwt
(>= 5.7.0))
(ocaml-lsp-server :with-dev-setup)
(ocamlformat
(and
:with-dev-setup
(>= 0.26.1)))
(odoc
(and
:with-doc
(>= 2.4.1)))))
(package
(name coap-core)
(synopsis "OCaml CoAP core library")
(description
"\nCore CoAP parser and type definitions.\n\nThis library should not be used directly by applications. Please install the\n`coap` package to start using a CoAP server or client.\n")
(depends
(ocaml
(>= 4.08.0))
dune
(fmt
(>= 0.9.0))
(cstruct
(>= 6.2.0))
base-bigarray
(stdint
(>= 0.7.2))
(ocaml-lsp-server :with-dev-setup)
(ocamlformat
(and
:with-dev-setup
(>= 0.26.1)))
(odoc
(and
:with-doc
(>= 2.4.1)))))
(package
(name coap-server-lwt)
(synopsis "OCaml CoAP core library")
(description
"Constrained Application Protocol (RFC 7252) implementation for OCaml.")
(depends
(ocaml
(>= 4.08.0))
dune
(coap-core
(= :version))
(fmt
(>= 0.9.0))
(cstruct
(>= 6.2.0))
(cstruct-lwt
(>= 6.2.0))
(stdint
(>= 0.7.2))
(lwt
(>= 5.7.0))
(ocaml-lsp-server :with-dev-setup)
(ocamlformat
(and
:with-dev-setup
(>= 0.26.1)))
(odoc
(and
:with-doc
(>= 2.4.1)))))