this repo has no description
1opam-version: "2.0" 2synopsis: "An OCaml library to manipulate Huffman trees" 3description: 4 "This package provides a simple implementation of the Huffman Algorithm." 5maintainer: ["Arthur Correnson <arthur.correnson@gmail.com>"] 6authors: ["Arthur Correnson <arthur.correnson@gmail.com>"] 7license: "MIT" 8doc: "https://jdrprod.github.io/huffman" 9homepage: "https://github.com/jdrprod/huffman" 10bug-reports: "https://github.com/jdrprod/huffman/issues" 11depends: [ 12 "dune" {>= "2.2"} 13] 14build: [ 15 ["dune" "subst"] {dev} 16 [ 17 "dune" 18 "build" 19 "-p" 20 name 21 "-j" 22 jobs 23 "@install" 24 "@runtest" {with-test} 25 "@doc" {with-doc} 26 ] 27] 28dev-repo: "git+https://github.com/jdrprod/huffman.git" 29url { 30 src: 31 "https://github.com/jdrprod/huffman/releases/download/v0.1.2/huffman-v0.1.2.tbz" 32 checksum: [ 33 "sha256=a536b694486748bfa9ec05af060c29f799f7ecbb535003343fe812fce8ffa72d" 34 "sha512=7dd6208873bd42aefe84ef59ae741017d364bd7fc302616f7131015c8b13968ac56e8a57639060ac115a729d46a834b87988872ea1bc2111e906e89efe8d2cb8" 35 ] 36}