CCSDS 502.0-B Orbit Parameter Message parser and serializer
0
fork

Configure Feed

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

csv: rename from csvt

Drops the redundant "t" suffix. Library name, opam package, module
(Csvt -> Csv), and directory all rename in lockstep. Every downstream
reference in interop tests, libraries, and docs updated.

+3 -3
+1 -1
test/interop/orekit/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries opm alcotest csvt fmt) 3 + (libraries opm alcotest csv fmt) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+2 -2
test/interop/orekit/test.ml
··· 23 23 } 24 24 25 25 let row_codec = 26 - Csvt.( 26 + Csv.( 27 27 Row.( 28 28 obj 29 29 (fun ··· 85 85 86 86 let parse () = 87 87 let rows = 88 - match Csvt.decode_file row_codec (trace "index.csv") with 88 + match Csv.decode_file row_codec (trace "index.csv") with 89 89 | Ok rows -> rows 90 90 | Error e -> Alcotest.failf "CSV: %s" e 91 91 in