The opam repository for my Advent of Agentic Humps 2025
1opam-version: "2.0"
2synopsis: "Bytesrw readers and writers for Eio"
3description:
4 "Provides Bytesrw.Bytes.Reader and Writer adapters for Eio Flows"
5maintainer: ["Anil Madhavapeddy <anil@recoil.org>"]
6authors: ["Anil Madhavapeddy"]
7license: "ISC"
8homepage: "https://tangled.org/@anil.recoil.org/ocaml-bytesrw-eio"
9bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-bytesrw-eio/issues"
10dev-repo: "git+https://tangled.org/@anil.recoil.org/ocaml-bytesrw-eio.git"
11depends: [
12 "dune" {>= "3.18"}
13 "ocaml" {>= "5.0"}
14 "bytesrw" {>= "0.2"}
15 "eio" {>= "1.0"}
16 "odoc" {with-doc}
17 "alcotest" {with-test & >= "1.7.0"}
18 "eio_main" {with-test}
19]
20build: [
21 ["dune" "subst"] {dev}
22 [
23 "dune"
24 "build"
25 "-p"
26 name
27 "-j"
28 jobs
29 "@install"
30 "@runtest" {with-test}
31 "@doc" {with-doc}
32 ]
33]
34x-maintenance-intent: ["(latest)"]
35url {
36 src: "git+https://tangled.org/@anil.recoil.org/ocaml-bytesrw-eio.git#main"
37}