My agentic slop goes here. Not intended for anyone else!
at main 1.1 kB view raw
1(lang dune 3.20) 2 3(name keyeio) 4 5(generate_opam_files true) 6 7(license ISC) 8(authors "Anil Madhavapeddy") 9(homepage "https://tangled.sh/@anil.recoil.org") 10(maintainers "Anil Madhavapeddy <anil@recoil.org>") 11(bug_reports https://tangled.sh/@anil.recoil.org/keyeio) 12(maintenance_intent "(latest)") 13 14(package 15 (name keyeio) 16 (synopsis "Secure API key storage for Eio applications using XDG directories") 17 (description 18 "Keyeio provides secure storage and retrieval of API keys and credentials \ 19 for Eio-based applications. It uses XDG Base Directory Specification via \ 20 the xdge library for consistent storage locations, supports multiple profiles \ 21 per service, and includes Cmdliner integration for easy command-line usage. \ 22 The library is designed to allow future integration with system keychains \ 23 like GNOME Keyring and macOS Keychain via the Secret Service API.") 24 (depends 25 (ocaml (>= 5.1.0)) 26 (eio (>= 1.1)) 27 eio_main 28 (xdge (>= 0.1.0)) 29 (toml (>= 7.0.0)) 30 (cmdliner (>= 1.2.0)) 31 (fmt (>= 0.11.0)) 32 (odoc :with-doc) 33 (alcotest (and :with-test (>= 1.7.0)))))