tangled
alpha
login
or
join now
anil.recoil.org
/
aoah-opam-repo
0
fork
atom
The opam repository for my Advent of Agentic Humps 2025
0
fork
atom
overview
issues
pulls
pipelines
+mdns
anil.recoil.org
2 months ago
a997cb21
e32aea22
0/1
build.yml
failed
2m 24s
+35
1 changed file
expand all
collapse all
unified
split
packages
mdns
mdns.dev
opam
+35
packages/mdns/mdns.dev/opam
reviewed
···
1
1
+
opam-version: "2.0"
2
2
+
synopsis: "mDNS/DNS-SD service discovery (RFC 6763)"
3
3
+
description:
4
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
5
+
maintainer: ["Thomas Gazagnaire <thomas@gazagnaire.org>"]
6
6
+
authors: ["Thomas Gazagnaire <thomas@gazagnaire.org>"]
7
7
+
license: "MIT"
8
8
+
homepage: "https://tangled.org/gazagnaire.org/ocaml-mdns"
9
9
+
bug-reports: "https://tangled.org/gazagnaire.org/ocaml-mdns/issues"
10
10
+
dev-repo: "git+https://tangled.org/anil.recoil.org/ocaml-mdns"
11
11
+
depends: [
12
12
+
"dune" {>= "3.0"}
13
13
+
"ocaml" {>= "4.08"}
14
14
+
"eio" {>= "1.0"}
15
15
+
"dns" {>= "9.0"}
16
16
+
"ipaddr" {>= "5.0"}
17
17
+
"domain-name" {>= "0.4"}
18
18
+
"alcotest" {with-test}
19
19
+
"crowbar" {with-test}
20
20
+
"odoc" {with-doc}
21
21
+
]
22
22
+
build: [
23
23
+
["dune" "subst"] {dev}
24
24
+
[
25
25
+
"dune"
26
26
+
"build"
27
27
+
"-p"
28
28
+
name
29
29
+
"-j"
30
30
+
jobs
31
31
+
"@install"
32
32
+
"@runtest" {with-test}
33
33
+
"@doc" {with-doc}
34
34
+
]
35
35
+
]