My agentic slop goes here. Not intended for anyone else!
at main 1.0 kB view raw
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" {>= "2.0.0"} 18 "jsont" 19 "bytesrw" 20 "ptime" 21 "logs" 22 "fmt" 23 "xdge" 24 "alcotest" {with-test} 25 "odoc" {with-doc} 26] 27build: [ 28 ["dune" "subst"] {dev} 29 [ 30 "dune" 31 "build" 32 "-p" 33 name 34 "-j" 35 jobs 36 "@install" 37 "@runtest" {with-test} 38 "@doc" {with-doc} 39 ] 40] 41dev-repo: "git+https://github.com/username/cacheio.git"