My agentic slop goes here. Not intended for anyone else!
1# This file is generated by dune, edit dune-project instead 2opam-version: "2.0" 3synopsis: "A flexible file-based caching library for OCaml with XDG support" 4description: 5 "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." 6maintainer: ["Your Name"] 7authors: ["Your Name"] 8license: "MIT" 9tags: ["cache" "filesystem" "xdg" "cmdliner" "eio"] 10homepage: "https://github.com/username/cacheio" 11doc: "https://url/to/documentation" 12bug-reports: "https://github.com/username/cacheio/issues" 13depends: [ 14 "ocaml" 15 "dune" {>= "3.16"} 16 "eio" 17 "cmdliner" {>= "1.3.0"} 18 "yojson" 19 "ptime" 20 "logs" 21 "fmt" 22 "xdge" 23 "alcotest" {with-test} 24 "odoc" {with-doc} 25] 26build: [ 27 ["dune" "subst"] {dev} 28 [ 29 "dune" 30 "build" 31 "-p" 32 name 33 "-j" 34 jobs 35 "@install" 36 "@runtest" {with-test} 37 "@doc" {with-doc} 38 ] 39] 40dev-repo: "git+https://github.com/username/cacheio.git"