upstream: github.com/mirleft/ocaml-tls
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.

+25 -5
+18 -4
README.md
··· 22 22 23 23 ## Installation 24 24 25 - `opam install tls` will install this library. 25 + Install with opam: 26 + 27 + ```sh 28 + $ opam install tls 29 + ``` 30 + 31 + If opam cannot find the package, it may not yet be released in the public 32 + `opam-repository`. Add the overlay repository, then install it: 33 + 34 + ```sh 35 + $ opam repo add samoht https://tangled.org/gazagnaire.org/opam-overlay.git 36 + $ opam update 37 + $ opam install tls 38 + ``` 26 39 27 40 You can also build this locally by conducting the steps: 28 41 29 - ```bash 30 - opam install --deps-only -t . # or a named package instead of `.` - i.e. ./tls-lwt.opam 31 - dune build --profile=release # you can also put a package list here, i.e. tls,tls-lwt -- you can also use `@all` target to compile examples as well 42 + <!-- $MDX non-deterministic=command --> 43 + ```sh 44 + $ opam install --deps-only -t . # or a named package instead of `.` - i.e. ./tls-lwt.opam 45 + $ dune build --profile=release # you can also put a package list here, i.e. tls,tls-lwt -- you can also use `@all` target to compile examples as well 32 46 ``` 33 47 34 48 ## Usage
+4
dune
··· 1 1 (env 2 2 (dev 3 3 (flags :standard %{dune-warnings}))) 4 + 5 + (mdx 6 + (files README.md) 7 + (libraries tls tls-eio))
+2 -1
dune-project
··· 1 1 (lang dune 3.21) 2 2 (name tls) 3 3 (source (tangled gazagnaire.org/ocaml-tls)) 4 - (using mdx 0.2) 4 + (using mdx 0.4) 5 5 (license BSD-2-Clause) 6 6 (authors 7 7 "David Kaloper <david@numm.org>" ··· 36 36 (digestif (>= 1.2.0)) 37 37 (ptime (>= 1.2.0)) 38 38 (alcotest :with-test) 39 + (mdx :with-test) 39 40 (cmdliner (and :with-test (>= 1.3.0)))) 40 41 (conflicts (result (< 1.5)))) 41 42
+1
tls.opam
··· 31 31 "digestif" {>= "1.2.0"} 32 32 "ptime" {>= "1.2.0"} 33 33 "alcotest" {with-test} 34 + "mdx" {with-test} 34 35 "cmdliner" {with-test & >= "1.3.0"} 35 36 "odoc" {with-doc} 36 37 ]