blob: 7d0b0e4cb095c8cce1e1a2ff89bb87b62773a4a7 (
plain) (
blame)
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
|
(lang dune 3.11)
(name flesh)
(generate_opam_files true)
(source
(uri "git+https://forge.fsky.io/clombrong/flesh.git"))
(authors "Clombrong")
(maintainers "Clombrong")
(license LGPL-3.0-or-later)
(homepage "https://forge.fsky.io/clombrong/flesh")
(bug_reports "https://forge.fsky.io/clombrong/flesh/issues")
(package
(name flesh)
(synopsis "High-level XMPP flesh interface")
(description "An high-level XMPP library based on Lwt, compilable to native code and JS.")
(depends
ocaml
dune
lwt
(js_of_ocaml-compiler
:with-test)
(merlin :with-test))
(tags
(xmpp lwt)))
; See the complete stanza docs at https://dune.readthedocs.io/en/stable/dune-files.html#dune-project
|