My agentic slop goes here. Not intended for anyone else!
at jsont 955 B view raw
1# This file is generated by dune, edit dune-project instead 2opam-version: "2.0" 3version: "0.1.0" 4synopsis: "Comprehensive structured logging with SQLite backend for Dancer" 5description: """ 6dancer-logs provides structured logging with SQLite storage, 7 pattern detection, and comprehensive context capture for AI-assisted debugging 8 and self-modification""" 9maintainer: ["anil@recoil.org"] 10authors: ["Anil Madhavapeddy"] 11license: "MIT" 12homepage: "https://github.com/avsm/dancer" 13bug-reports: "https://github.com/avsm/dancer/issues" 14depends: [ 15 "ocaml" 16 "dune" {>= "3.0"} 17 "eio" 18 "eio_main" 19 "logs" 20 "sqlite3" 21 "fmt" 22 "ptime" 23 "digestif" 24 "yojson" 25 "ppx_deriving" 26 "cmdliner" 27 "alcotest" {with-test} 28 "odoc" {with-doc} 29] 30build: [ 31 ["dune" "subst"] {dev} 32 [ 33 "dune" 34 "build" 35 "-p" 36 name 37 "-j" 38 jobs 39 "@install" 40 "@runtest" {with-test} 41 "@doc" {with-doc} 42 ] 43] 44dev-repo: "git+https://github.com/avsm/dancer.git"