My agentic slop goes here. Not intended for anyone else!
1(lang dune 3.16)
2
3(name cacheio)
4
5(generate_opam_files true)
6
7(source
8 (github username/cacheio))
9
10(authors "Your Name")
11
12(maintainers "Your Name")
13
14(license MIT)
15
16(documentation https://url/to/documentation)
17
18(package
19 (name cacheio)
20 (synopsis "A flexible file-based caching library for OCaml with XDG support")
21 (description "CacheIO provides a simple and efficient file-based caching system with support for XDG base directory specification, TTL-based expiration, and cmdliner integration for CLI applications.")
22 (depends
23 ocaml
24 dune
25 eio
26 (cmdliner (>= 2.0.0))
27 jsont
28 bytesrw
29 ptime
30 logs
31 fmt
32 xdge
33 (alcotest :with-test))
34 (tags
35 (cache filesystem xdg cmdliner eio)))