The opam repository for my Advent of Agentic Humps 2025

+mdns

+35
+35
packages/mdns/mdns.dev/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "mDNS/DNS-SD service discovery (RFC 6763)" 3 + description: 4 + "A pure OCaml implementation of mDNS (Multicast DNS) for DNS-SD service discovery as specified in RFC 6763. Uses Eio for async networking and the dns library for query encoding." 5 + maintainer: ["Thomas Gazagnaire <thomas@gazagnaire.org>"] 6 + authors: ["Thomas Gazagnaire <thomas@gazagnaire.org>"] 7 + license: "MIT" 8 + homepage: "https://tangled.org/gazagnaire.org/ocaml-mdns" 9 + bug-reports: "https://tangled.org/gazagnaire.org/ocaml-mdns/issues" 10 + dev-repo: "git+https://tangled.org/anil.recoil.org/ocaml-mdns" 11 + depends: [ 12 + "dune" {>= "3.0"} 13 + "ocaml" {>= "4.08"} 14 + "eio" {>= "1.0"} 15 + "dns" {>= "9.0"} 16 + "ipaddr" {>= "5.0"} 17 + "domain-name" {>= "0.4"} 18 + "alcotest" {with-test} 19 + "crowbar" {with-test} 20 + "odoc" {with-doc} 21 + ] 22 + build: [ 23 + ["dune" "subst"] {dev} 24 + [ 25 + "dune" 26 + "build" 27 + "-p" 28 + name 29 + "-j" 30 + jobs 31 + "@install" 32 + "@runtest" {with-test} 33 + "@doc" {with-doc} 34 + ] 35 + ]