this repo has no description
1opam-version: "2.0" 2synopsis: 3 "Storage backend for ambient-context using Eio's continuation-local storage" 4maintainer: "ELLIOTTCABLE <opam@ell.io>" 5authors: "ELLIOTTCABLE" 6license: "MIT" 7homepage: "https://github.com/ELLIOTTCABLE/ocaml-ambient-context" 8bug-reports: "https://github.com/ELLIOTTCABLE/ocaml-ambient-context/issues" 9depends: [ 10 "dune" {>= "3.6"} 11 "ocaml" {>= "5.0"} 12 "ambient-context" {= version} 13 "eio" 14 "alcotest" {with-test} 15 "alcotest-lwt" {with-test} 16 "bisect_ppx" {with-test} 17 "odoc" {with-doc} 18] 19build: [ 20 ["dune" "subst"] {dev} 21 [ 22 "dune" 23 "build" 24 "-p" 25 name 26 "-j" 27 jobs 28 "@install" 29 "@runtest" {with-test} 30 "@doc" {with-doc} 31 ] 32] 33dev-repo: "git+https://github.com/ELLIOTTCABLE/ocaml-ambient-context.git" 34url { 35 src: 36 "https://github.com/ELLIOTTCABLE/ocaml-ambient-context/archive/refs/tags/v0.1.0.tar.gz" 37 checksum: [ 38 "md5=0171c39c3b15aa567df33792d177314a" 39 "sha512=0ef177d42e120fb174350ebc9db7d87106d9509d0c9f7f49dfce3bbf424259a1ec8f9bbf1b6a8faecff10544a7530a5d1d4d2fffdfc3f4a39c34c119540a28b2" 40 ] 41}