My agentic slop goes here. Not intended for anyone else!
at main 1.3 kB view raw
1# This file is generated by dune, edit dune-project instead 2opam-version: "2.0" 3synopsis: "Secure API key storage for Eio applications using XDG directories" 4description: 5 "Keyeio provides secure storage and retrieval of API keys and credentials for Eio-based applications. It uses XDG Base Directory Specification via the xdge library for consistent storage locations, supports multiple profiles per service, and includes Cmdliner integration for easy command-line usage. The library is designed to allow future integration with system keychains like GNOME Keyring and macOS Keychain via the Secret Service API." 6maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 7authors: ["Anil Madhavapeddy"] 8license: "ISC" 9homepage: "https://tangled.sh/@anil.recoil.org" 10bug-reports: "https://tangled.sh/@anil.recoil.org/keyeio" 11depends: [ 12 "dune" {>= "3.20"} 13 "ocaml" {>= "5.1.0"} 14 "eio" {>= "1.1"} 15 "eio_main" 16 "xdge" {>= "0.1.0"} 17 "toml" {>= "7.0.0"} 18 "cmdliner" {>= "1.2.0"} 19 "fmt" {>= "0.11.0"} 20 "odoc" {with-doc} 21 "alcotest" {with-test & >= "1.7.0"} 22] 23build: [ 24 ["dune" "subst"] {dev} 25 [ 26 "dune" 27 "build" 28 "-p" 29 name 30 "-j" 31 jobs 32 "@install" 33 "@runtest" {with-test} 34 "@doc" {with-doc} 35 ] 36] 37x-maintenance-intent: ["(latest)"]