My aggregated monorepo of OCaml code, automaintained
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Constrain lwt < 6.1.0 (6.1.1 incompatible with oxcaml)

lwt 6.1.1 fails to compile on oxcaml 5.2.0+ox due to type changes
in Unix.recv/send. The ox repo provides lwt.6.0.0+ox which works.
Adding an upper bound ensures the solver picks the right version.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+6 -6
+1 -1
js_top_worker/js_top_worker-client.opam
··· 11 11 "js_of_ocaml" {>= "3.11.0"} 12 12 "js_of_ocaml-ppx" 13 13 "js_top_worker-rpc" {= version} 14 - "lwt" 14 + "lwt" {< "6.1.0"} 15 15 "brr" {>= "0.0.4"} 16 16 ] 17 17 build : [
+1 -1
js_top_worker/js_top_worker-unix.opam
··· 11 11 "js_top_worker" {= version} 12 12 "logs" 13 13 "fmt" 14 - "lwt" 14 + "lwt" {< "6.1.0"} 15 15 ] 16 16 build : [ 17 17 ["dune" "subst"] {pinned}
+1 -1
js_top_worker/js_top_worker-web.opam
··· 13 13 "astring" 14 14 "brr" {>= "0.0.4"} 15 15 "js_top_worker" {= version} 16 - "lwt" 16 + "lwt" {< "6.1.0"} 17 17 "js_of_ocaml-lwt" 18 18 "js_of_ocaml-toplevel" 19 19 "logs"
+1 -1
js_top_worker/js_top_worker.opam
··· 13 13 "astring" 14 14 "js_of_ocaml-toplevel" 15 15 "js_of_ocaml-compiler" 16 - "lwt" 16 + "lwt" {< "6.1.0"} 17 17 "merlin-lib" {>= "4.7"} 18 18 "mime_printer" 19 19 "logs"
+1 -1
odoc/sherlodoc.opam
··· 18 18 "cmdliner" {>= "1.3.0"} 19 19 "decompress" {>= "1.5.3"} 20 20 "fpath" {>= "0.7.3"} 21 - "lwt" {>= "5.7.0"} 21 + "lwt" {>= "5.7.0" & < "6.1.0"} 22 22 "menhir" {>= "20230608"} 23 23 "ppx_blob" {>= "0.9.0"} 24 24 "tyxml" {>= "4.6.0"}
+1 -1
onnxrt/onnxrt.opam
··· 9 9 "ocaml" {>= "5.2"} 10 10 "js_of_ocaml" {>= "5.8"} 11 11 "js_of_ocaml-ppx" {>= "5.8"} 12 - "lwt" {>= "5.7"} 12 + "lwt" {>= "5.7" & < "6.1.0"} 13 13 "js_of_ocaml-lwt" {>= "5.8"} 14 14 "odoc" {with-doc} 15 15 ]