WebSocket frame codec (RFC 6455)
0
fork

Configure Feed

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

Add (source ...) stanzas to subtree dune-projects

38 subtrees lacked a (source ...) stanza in their dune-project, so
their generated .opam files had no dev-repo: field. That broke
downstream tooling that uses dev-repo to identify the subtree
(notably the root.opam external-dep filter, which couldn't tell
internal packages from external ones).

Add (source (tangled gazagnaire.org/<subtree>)) to each, matching
the URL configured in sources.toml. dune regenerates dev-repo:,
homepage: and bug-reports: in every affected .opam.

+5
+2
dune-project
··· 8 8 (authors "Thomas Gazagnaire <thomas@gazagnaire.org>") 9 9 (maintainers "Thomas Gazagnaire <thomas@gazagnaire.org>") 10 10 11 + (source (tangled gazagnaire.org/ocaml-websocket)) 12 + 11 13 (package 12 14 (name websocket) 13 15 (synopsis "WebSocket frame codec (RFC 6455)")
+3
websocket.opam
··· 8 8 authors: ["Thomas Gazagnaire <thomas@gazagnaire.org>"] 9 9 license: "ISC" 10 10 tags: ["org:blacksun" "network" "http"] 11 + homepage: "https://tangled.org/gazagnaire.org/ocaml-websocket" 12 + bug-reports: "https://tangled.org/gazagnaire.org/ocaml-websocket/issues" 11 13 depends: [ 12 14 "dune" {>= "3.21"} 13 15 "ocaml" {>= "5.2"} ··· 30 32 "@doc" {with-doc} 31 33 ] 32 34 ] 35 + dev-repo: "git+https://tangled.org/gazagnaire.org/ocaml-websocket" 33 36 x-maintenance-intent: ["(latest)"] 34 37 x-quality-build: "2026-04-15" 35 38 x-quality-fuzz: "2026-04-15"