this repo has no description
1opam-version: "2.0" 2maintainer: ["Markus W. Weissmann <markus.weissmann@in.tum.de>"] 3authors: [ 4 "Andre Nathan <andre@digirati.com.br>" 5 "Jeff Shaw <shawjef3@msu.edu>" 6 "Markus W. Weissmann <markus.weissmann@in.tum.de>" 7 "Florian Pichlmeier <florian.pichlmeier@mytum.de>" 8] 9bug-reports: "https://github.com/andrenth/ocaml-stdint/issues" 10homepage: "https://github.com/andrenth/ocaml-stdint" 11doc: "https://andrenth.github.io/ocaml-stdint/" 12license: "MIT" 13dev-repo: "git+https://github.com/andrenth/ocaml-stdint.git" 14synopsis: "Signed and unsigned integer types having specified widths" 15description: """ 16The stdint library provides signed and unsigned integer types of various fixed 17widths: 8, 16, 24, 32, 40, 48, 56, 64 and 128 bit. 18 19This interface is similar to Int32 and Int64 from the base library but provides 20more functions and constants like arithmetic and bit-wise operations, constants 21like maximum and minimum values, infix operators conversion to and from every 22other integer type (including int, float and nativeint), parsing from and 23conversion to readable strings (binary, octal, decimal, hexademical), conversion 24to and from buffers in both big endian and little endian byte order.""" 25depends: [ 26 "ocaml" {>= "4.03" & < "5.0"} 27 "odoc" {with-doc} 28 "dune" {>= "1.10"} 29] 30build: [ 31 ["dune" "subst"] {dev} 32 [ 33 "dune" 34 "build" 35 "-p" 36 name 37 "-j" 38 jobs 39 "@install" 40 "@doc" {with-doc} 41 ] 42] 43x-commit-hash: "f3eb95c3807249e1fb8ca635bdaa1ef98f7249da" 44url { 45 src: 46 "https://github.com/andrenth/ocaml-stdint/releases/download/0.7.0/stdint-0.7.0.tbz" 47 checksum: [ 48 "sha256=4fcc66aef58e2b96e7af3bbca9d910aa239e045ba5fb2400aaef67d0041252dc" 49 "sha512=9b05b6cf691320b718dd2118b1e3f96a2997e42e6c99a34b470b060c82fc16c50d57c6ee392d1b62bdb8df73094657eea56050da3e74745a4afb0f150a60a584" 50 ] 51}