this repo has no description
1opam-version: "2.0" 2maintainer: "Zach Shipko <zachshipko@gmail.com>" 3authors: ["Zach Shipko <zachshipko@gmail.com>"] 4homepage: "https://github.com/zshipko/ocaml-bimage" 5doc: "https://zshipko.github.io/ocaml-bimage/doc" 6license: "ISC" 7dev-repo: "git+https://github.com/zshipko/ocaml-bimage.git" 8bug-reports: "https://github.com/zshipko/ocaml-bimage/issues" 9tags: ["image processing"] 10 11depends: 12[ 13 "ocaml" {>= "4.08.0"} 14 "dune" {>= "2.0"} 15 "bimage" {= version} 16 "ctypes" {>= "0.14"} 17 "ctypes-foreign" {>= "0.4"} 18] 19 20build: [ 21 ["dune" "build" "-p" name "-j" jobs] 22 ["dune" "runtest" "-p" name] {with-test} 23] 24 25synopsis: """ 26Bimage_unix provides methods for encoding/decoding images in many formats using ImageMagick/stb_image 27""" 28 29description: """ 30An image processing library for OCaml providing efficient, composable operations. 31Additionally, bimage supports most types supported by Bigarray. 32""" 33x-commit-hash: "533f72adba67ece8bd1a270eccdae85ccd87b44d" 34url { 35 src: 36 "https://github.com/zshipko/ocaml-bimage/releases/download/v0.3.1/bimage-v0.3.1.tbz" 37 checksum: [ 38 "sha256=9490a99848142a921ecb5da5b91b53682e7b372119dcf0ccf868d82f893b15d1" 39 "sha512=4e1d2a039931e014f319f54e73ed0cc7c1f819a4490d95693ce0d8797bc22e81027985f6bbbda3c3c6619dfd8f4bc01fe48b20cda2482ad279c9143d09c2a8c7" 40 ] 41}