My aggregated monorepo of OCaml code, automaintained
at doc-fixes 32 lines 729 B view raw
1(lang dune 3.20) 2(name mqtte) 3 4(generate_opam_files true) 5 6(license ISC) 7(authors "Anil Madhavapeddy") 8(homepage "https://tangled.org/@anil.recoil.org/ocaml-mqtte") 9(maintainers "Anil Madhavapeddy <anil@recoil.org>") 10(bug_reports "https://tangled.org/@anil.recoil.org/ocaml-mqtte/issues") 11(maintenance_intent "(latest)") 12 13(package 14 (name mqtte) 15 (synopsis "MQTT protocol library for OCaml") 16 (description "An MQTT v3.1.1 and v5.0 protocol library with Eio-based client") 17 (depends 18 (ocaml (>= 5.1)) 19 (eio (>= 1.0)) 20 (eio_main (>= 1.0)) 21 (bytesrw (>= 0.1)) 22 (bytesrw-eio (>= 0.1)) 23 conpool 24 ca-certs 25 (cmdliner (>= 1.2)) 26 tls 27 xdge 28 tomlt 29 (logs (>= 0.7)) 30 (fmt (>= 0.9)) 31 (alcotest :with-test) 32 (odoc :with-doc)))