CRC checksums (CRC-16, CRC-32, CRC-32C) for OCaml
0
fork

Configure Feed

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

chore: extract shared CRC to ocaml-crc and update dependencies

Replace inline CRC-16/32 implementations in aos, bundle, cfdp, pid1, tc,
tm, uslp with shared ocaml-crc dependency. Fix ocaml-crc test formatting.

+4 -2
+1 -1
test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries crc alcotest)) 3 + (libraries crc alcotest memtrace))
+3 -1
test/test.ml
··· 1 - let () = Alcotest.run (fst Test_crc.suite) (snd Test_crc.suite) 1 + let () = 2 + Memtrace.trace_if_requested (); 3 + Alcotest.run (fst Test_crc.suite) (snd Test_crc.suite)