My agentic slop goes here. Not intended for anyone else!
at jsont 825 B view raw
1(lang dune 3.0) 2 3(name eiocmd) 4 5(generate_opam_files true) 6 7(source 8 (github avsm/knot)) 9 10(authors "Anil Madhavapeddy") 11 12(maintainers "anil@recoil.org") 13 14(license ISC) 15 16(package 17 (name eiocmd) 18 (synopsis "Batteries-included CLI runner for Eio applications") 19 (description 20 "Eiocmd provides a convenient wrapper for building command-line applications with Eio. It handles common setup tasks including: random number generator initialization, logging configuration (logs/fmt), CLI argument parsing (cmdliner), and optional integration with xdge (XDG directories) and keyeio (API key management).") 21 (depends 22 (ocaml 23 (>= 5.1.0)) 24 (eio 25 (>= 1.0)) 26 (eio_main 27 (>= 1.0)) 28 (cmdliner 29 (>= 1.3.0)) 30 (logs 31 (>= 0.7.0)) 32 (fmt 33 (>= 0.9.0)) 34 (toml 35 (>= 7.0.0)) 36 (mirage-crypto-rng 37 (>= 1.0.0)) 38 xdge 39 keyeio))