diff options
author | Clombrong <clombrong@egregore.fun> | 2025-05-09 12:15:03 +0200 |
---|---|---|
committer | Clombrong <cromblong@egregore.fun> | 2025-05-09 12:15:03 +0200 |
commit | b6ec8b97308f394c99c7bd22ffa16ae8c4ee2ca2 (patch) | |
tree | d7c9477e541e8f4dcb7f68e05b6c0e5396b76d9c | |
parent | 9a23484b8f8f5c728e23130a8ee93a4ac2c97543 (diff) |
feat(dune): add markup-lwt dependency
-rw-r--r-- | dune-project | 1 | ||||
-rw-r--r-- | flesh_websockets.opam | 1 | ||||
-rw-r--r-- | portal/lib/dune | 2 |
3 files changed, 3 insertions, 1 deletions
diff --git a/dune-project b/dune-project index 77d2fd6..699cf6c 100644 --- a/dune-project +++ b/dune-project @@ -43,6 +43,7 @@ js_of_ocaml-ppx xmlm markup + markup-lwt (flesh (and (= :version) :with-test)) diff --git a/flesh_websockets.opam b/flesh_websockets.opam index d904908..cf9f00b 100644 --- a/flesh_websockets.opam +++ b/flesh_websockets.opam @@ -16,6 +16,7 @@ depends: [ "js_of_ocaml-ppx" "xmlm" "markup" + "markup-lwt" "flesh" {= version & with-test} "merlin" {with-test} "utop" {with-test} diff --git a/portal/lib/dune b/portal/lib/dune index e2fb20a..2244890 100644 --- a/portal/lib/dune +++ b/portal/lib/dune @@ -2,5 +2,5 @@ (name portal_ws) (modules portal_ws) (public_name flesh_websockets) - (libraries lwt js_of_ocaml js_of_ocaml-lwt xmlm markup) + (libraries lwt js_of_ocaml js_of_ocaml-lwt xmlm markup markup-lwt) (preprocess (pps js_of_ocaml-ppx))) |