My agentic slop goes here. Not intended for anyone else!
1(lang dune 3.0)
2(name dancer)
3(version 0.1.0)
4
5(generate_opam_files true)
6
7(source
8 (github avsm/dancer))
9
10(license MIT)
11
12(authors "Anil Madhavapeddy")
13
14(maintainers "anil@recoil.org")
15
16(package
17 (name dancer-logs)
18 (synopsis "Comprehensive structured logging with SQLite backend for Dancer")
19 (description "dancer-logs provides structured logging with SQLite storage,
20 pattern detection, and comprehensive context capture for AI-assisted debugging
21 and self-modification")
22 (depends
23 ocaml
24 dune
25 eio
26 eio_main
27 logs
28 sqlite3
29 fmt
30 ptime
31 digestif
32 yojson
33 ppx_deriving
34 cmdliner
35 (alcotest :with-test)))
36
37(package
38 (name dancer-logs-cli)
39 (synopsis "CLI tool for querying and analyzing dancer-logs")
40 (description "Command-line interface for browsing, searching, and exporting
41 logs captured by dancer-logs")
42 (depends
43 dancer-logs
44 cmdliner
45 fmt))