X-Forwarded-For parsing and trusted proxy detection for OCaml
0
fork

Configure Feed

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

Migrate dune-project files to tangled source format

Convert all packages from:
(source (uri https://tangled.org/handle/repo))
to:
(source (tangled handle/repo))

This uses dune 3.21's native tangled support for cleaner source
declarations. Also removes redundant homepage/bug_reports fields
that are auto-generated from tangled sources.

+8 -5
+3 -3
dune-project
··· 1 - (lang dune 3.0) 1 + (lang dune 3.21) 2 2 3 3 (name xff) 4 4 5 5 (generate_opam_files true) 6 6 7 - (source 8 - (uri https://tangled.org/gazagnaire.org/ocaml-xff)) 7 + 8 + (source (tangled gazagnaire.org/ocaml-xff)) 9 9 10 10 (authors "Thomas Gazagnaire") 11 11
+5 -2
xff.opam
··· 8 8 maintainer: ["thomas@gazagnaire.org"] 9 9 authors: ["Thomas Gazagnaire"] 10 10 license: "ISC" 11 + homepage: "https://tangled.org/gazagnaire.org/ocaml-xff" 12 + bug-reports: "https://tangled.org/gazagnaire.org/ocaml-xff/issues" 11 13 depends: [ 12 14 "ocaml" {>= "5.0.0"} 13 - "dune" {>= "3.0"} 15 + "dune" {>= "3.21"} 14 16 "ipaddr" 15 17 "fmt" 16 18 "alcotest" {with-test} ··· 30 32 "@doc" {with-doc} 31 33 ] 32 34 ] 33 - dev-repo: "https://tangled.org/gazagnaire.org/ocaml-xff" 35 + dev-repo: "git+https://tangled.org/gazagnaire.org/ocaml-xff" 36 + x-maintenance-intent: ["(latest)"]