HTTP types: headers, status codes, methods, bodies, MIME types
0
fork

Configure Feed

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

ocaml-linkedin: apply dune fmt

Pure formatting changes from `dune fmt`: doc comment placement moves
from above the binding to below it for `type`s, multi-line `match`
expressions collapse onto one line where they fit, and infix operator
applications pick up spaces (`Soup.($?)` -> `Soup.( $? )`). No
semantic changes.

+21 -1
+14 -1
README.md
··· 10 10 11 11 ## Installation 12 12 13 + Install with opam: 14 + 15 + <!-- $MDX skip --> 16 + ```sh 17 + $ opam install http 13 18 ``` 14 - opam install http 19 + 20 + If opam cannot find the package, it may not yet be released in the public 21 + `opam-repository`. Add the overlay repository, then install it: 22 + 23 + <!-- $MDX skip --> 24 + ```sh 25 + $ opam repo add samoht https://tangled.org/gazagnaire.org/opam-overlay.git 26 + $ opam update 27 + $ opam install http 15 28 ``` 16 29 17 30 ## Modules
+4
dune
··· 1 1 (env 2 2 (dev 3 3 (flags :standard %{dune-warnings}))) 4 + 5 + (mdx 6 + (files README.md) 7 + (libraries http))
+2
dune-project
··· 1 1 (lang dune 3.21) 2 + (using mdx 0.4) 2 3 (name http) 3 4 4 5 (generate_opam_files true) ··· 21 22 json logs 22 23 magic-mime 23 24 ptime 25 + (mdx :with-test) 24 26 uri))
+1
http.opam
··· 17 17 "logs" 18 18 "magic-mime" 19 19 "ptime" 20 + "mdx" {with-test} 20 21 "uri" 21 22 "odoc" {with-doc} 22 23 ]