OCaml client library for Claude Code
0
fork

Configure Feed

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

Declare missing :with-test deps in dune-project + opam

Several packages had alcobar/alcotest/mdx/bytesrw/etc. used in
test/ or fuzz/ but undeclared in dune-project, leaving the opam
metadata silently incomplete. Sync the dune-project depends and
regenerate the opam files.

+3 -1
+1
claude.opam
··· 22 22 "alcotest" {with-test & >= "1.7.0"} 23 23 "mdx" {with-test} 24 24 "nox-loc" 25 + "json_utils" 25 26 ] 26 27 build: [ 27 28 ["dune" "subst"] {dev}
+2 -1
dune-project
··· 25 25 (odoc :with-doc) 26 26 (alcotest (and :with-test (>= 1.7.0))) 27 27 (mdx :with-test) 28 - nox-loc)) 28 + nox-loc 29 + json_utils))