My agentic slop goes here. Not intended for anyone else!
1(lang dune 3.20)
2
3(name xdge)
4
5(generate_opam_files true)
6
7(license ISC)
8(authors "Anil Madhavapeddy")
9(homepage "https://tangled.sh/@anil.recoil.org/ocaml-gpx")
10(maintainers "Anil Madhavapeddy <anil@recoil.org>")
11(bug_reports https://tangled.sh/@anil.recoil.org/xgde)
12(maintenance_intent "(latest)")
13
14(package
15 (name xdge)
16 (synopsis "XDG Base Directory Specification support for Eio")
17 (description
18 "This library implements the XDG Base Directory Specification \
19 with Eio capabilities to provides safe access to configuration, \
20 data, cache, state, and runtime directories with proper environment \
21 variable overrides and Cmdliner integration.")
22 (depends
23 (ocaml (>= 5.1.0))
24 (eio (>= 1.1))
25 eio_main
26 (xdg (>= 3.9.0))
27 (cmdliner (>= 1.2.0))
28 (fmt (>= 0.11.0))
29 (odoc :with-doc)
30 (alcotest (and :with-test (>= 1.7.0)))))