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 (>= 1.3.0)) 27 yojson 28 ptime 29 logs 30 fmt 31 xdge 32 (alcotest :with-test)) 33 (tags 34 (cache filesystem xdg cmdliner eio)))