OCaml Zarr jsont codecs for v2/v3 and common conventions
0
fork

Configure Feed

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

scaffold: project structure with dune build

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

+21
+11
dune-project
··· 1 + (lang dune 3.0) 2 + (name zarr-jsont) 3 + (generate_opam_files true) 4 + 5 + (package 6 + (name zarr-jsont) 7 + (synopsis "Jsont codecs for Zarr v2 and v3 metadata") 8 + (depends 9 + (ocaml (>= 5.1)) 10 + (jsont (>= 0.2.0)) 11 + (bytesrw (>= 0.1.0))))
+4
src/dune
··· 1 + (library 2 + (name zarr_jsont) 3 + (public_name zarr-jsont) 4 + (libraries jsont jsont.bytesrw))
+1
src/zarr_jsont.ml
··· 1 + (* Zarr jsont codecs *)
+1
src/zarr_jsont.mli
··· 1 + (** Jsont codecs for Zarr v2 and v3 metadata. *)
+3
test/dune
··· 1 + (test 2 + (name test_zarr_jsont) 3 + (libraries zarr_jsont jsont.bytesrw))
+1
test/test_zarr_jsont.ml
··· 1 + let () = print_endline "zarr-jsont tests: ok"