diff options
author | Clombrong <cromblong@egregore.fun> | 2025-06-26 00:24:25 +0200 |
---|---|---|
committer | Clombrong <cromblong@egregore.fun> | 2025-06-26 00:24:25 +0200 |
commit | 1d54e3f65f661d8b5e8f12fa347caab27b968c16 (patch) | |
tree | e260f71088b154bce9fc62d248e3126db696ddc5 /portal-tcp.opam | |
parent | fdeff689457eab5c77133930f27d45df826dce58 (diff) |
feat(portal): make portal_tcp an implementation of Portal
Diffstat (limited to 'portal-tcp.opam')
-rw-r--r-- | portal-tcp.opam | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/portal-tcp.opam b/portal-tcp.opam new file mode 100644 index 0000000..d9358e5 --- /dev/null +++ b/portal-tcp.opam @@ -0,0 +1,37 @@ +# This file is generated by dune, edit dune-project instead +opam-version: "2.0" +synopsis: "Plain TCP XMPP portal" +description: """ +This library implements an XMPP Portal for plain TCP. + +This package sends your credential over unsecured plaintext wire. + +You should probably not use this unless you know what you're doing.""" +maintainer: ["Clombrong"] +authors: ["Clombrong"] +license: "LGPL-3.0-or-later" +tags: ["xmpp" "flesh" "portal" "tcp" "lwt"] +homepage: "https://forge.fsky.io/clombrong/flesh" +bug-reports: "https://forge.fsky.io/clombrong/flesh/issues" +depends: [ + "ocaml" + "dune" {>= "3.11"} + "merlin" {with-test} + "utop" {with-test} + "odoc" {with-doc} +] +build: [ + ["dune" "subst"] {dev} + [ + "dune" + "build" + "-p" + name + "-j" + jobs + "@install" + "@runtest" {with-test} + "@doc" {with-doc} + ] +] +dev-repo: "git+https://forge.fsky.io/clombrong/flesh.git" |