this repo has no description
1# This file is generated by dune, edit dune-project instead 2opam-version: "2.0" 3synopsis: "Consistent Overhead Byte Stuffing (COBS) encoding and decoding" 4description: 5 "A lightweight Consistent Overhead Byte Stuffing (COBS) encoder and decoder written in pure OCaml with no dependencies" 6maintainer: ["Merlin04 <opam@enby.land>"] 7authors: ["Merlin04 <opam@enby.land>"] 8license: "MIT" 9homepage: "https://github.com/Merlin04/ocaml-cobs" 10doc: "https://github.com/Merlin04/ocaml-cobs" 11bug-reports: "https://github.com/Merlin04/ocaml-cobs/issues" 12depends: [ 13 "ocaml" {>= "4.08"} 14 "ocaml" {with-test & >= "4.13"} 15 "dune" {>= "3.15"} 16 "ounit2" {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/Merlin04/ocaml-cobs.git" 34url { 35 src: 36 "https://github.com/Merlin04/ocaml-cobs/archive/refs/tags/0.1.1.tar.gz" 37 checksum: [ 38 "md5=c8127c6b4b412aacd8300a0ac72cc755" 39 "sha512=e175f679ef74d372f2478572ee5d3a576466b6d4b3b813e7c58503854eeb0ccab1ff8e8186e972695ae027d8492249c53ca17bf8329a124631fe0a38bbffbafe" 40 ] 41}