CCSDS TM Transfer Frames (CCSDS 132.0-B-3)
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/dariol83/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries tm csvt alcotest) 3 + (libraries tm csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+2 -2
test/interop/dariol83/test.ml
··· 33 33 let bool_of_int n = n <> 0 34 34 35 35 let vector_codec = 36 - Csvt.( 36 + Csv.( 37 37 Row.( 38 38 obj 39 39 (fun ··· 111 111 Buffer.contents buf 112 112 113 113 let load_vectors () = 114 - match Csvt.decode_file vector_codec (trace "vectors.csv") with 114 + match Csv.decode_file vector_codec (trace "vectors.csv") with 115 115 | Ok rows -> rows 116 116 | Error e -> Alcotest.failf "CSV decode: %s" e 117 117