this repo has no description
1opam-version: "2.0" 2synopsis: "OCaml implementation of a Luby Transform code" 3description: """ 4Luby Transform codes are a type of fountain codes, allowing data recovery 5from data erasure. 6 7This library provides an encoder and decoder for a Luby Transform code, 8and can operate in systematic or non-systematic mode. 9""" 10maintainer: "Darren Ldl <darrenldldev@gmail.com>" 11authors: "Darren Ldl" 12license: "MIT" 13homepage: "https://github.com/darrenldl/ocaml-lt-code" 14bug-reports: "https://github.com/darrenldl/ocaml-lt-code/issues" 15dev-repo: "git+https://github.com/darrenldl/ocaml-lt-code" 16depends: [ 17 "ocaml" {>= "4.08.1"} 18 "dune" {>= "2.7.0"} 19 "containers" {>= "3.4"} 20 "cstruct" {>= "6.0.0"} 21 "alcotest" {with-test} 22 "qcheck-alcotest" {with-test} 23 "qcheck" {with-test} 24] 25build: [ 26 ["dune" "build" "-p" name "-j" jobs] 27] 28url { 29 src: 30 "https://github.com/darrenldl/ocaml-lt-code/releases/download/v0.1.1/v0.1.1.tar.gz" 31 checksum: 32 "sha256=59c8c4022413d5cf28439b08fbded9c408fdf8dcfe77a92c84391769c7be78b9" 33}