CCSDS 503.0-B Tracking Data Message parser and serializer
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
+12 -1
README.md
··· 11 11 12 12 ## Installation 13 13 14 + Install with opam: 15 + 16 + ```sh 17 + $ opam install tdm 14 18 ``` 15 - opam install tdm 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 + ```sh 24 + $ opam repo add samoht https://tangled.org/gazagnaire.org/opam-overlay.git 25 + $ opam update 26 + $ opam install tdm 16 27 ``` 17 28 18 29 ## Usage
+6
dune
··· 1 1 (env 2 2 (dev 3 3 (flags :standard %{dune-warnings}))) 4 + 5 + (mdx 6 + (files 7 + README.md 8 + ) 9 + (libraries tdm))
+2
dune-project
··· 1 1 (lang dune 3.21) 2 + (using mdx 0.4) 2 3 (name tdm) 3 4 (source (tangled gazagnaire.org/ocaml-tdm)) 4 5 (formatting (enabled_for ocaml)) ··· 17 18 (ocaml (>= 4.14)) 18 19 kvn 19 20 fmt 21 + (mdx :with-test) 20 22 ptime))
+1
tdm.opam
··· 12 12 "ocaml" {>= "4.14"} 13 13 "kvn" 14 14 "fmt" 15 + "mdx" {with-test} 15 16 "ptime" 16 17 "odoc" {with-doc} 17 18 ]