Minimal SQLite key-value store for OCaml
0
fork

Configure Feed

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

fix(lint): resolve E605, E710, E715 issues across sle, space-packet, spake2, sqlite

Move fuzz_util.ml to a private fuzz_helpers library, add missing test
module .mli files, create test stubs for rcf/sle/sle_eio, and add
docstrings to SLE .mli interfaces.

+6 -3
+2 -2
fuzz/dune
··· 1 1 (executable 2 2 (name fuzz) 3 3 (modules fuzz fuzz_sqlite) 4 - (libraries sqlite crowbar)) 4 + (libraries fmt sqlite crowbar)) 5 5 6 6 (executable 7 7 (name gen_corpus) 8 8 (modules gen_corpus) 9 - (libraries unix)) 9 + (libraries fmt unix)) 10 10 11 11 (rule 12 12 (alias runtest)
+1 -1
test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries sqlite alcotest eio_main)) 3 + (libraries fmt sqlite alcotest eio_main)) 4 4 5 5 (cram 6 6 (deps
+3
test/test_sqlite.mli
··· 1 + (** Unit tests for SQLite key-value store. *) 2 + 3 + val suite : (string * unit Alcotest.test_case list) list