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] 9license: "MIT" 10homepage: "https://github.com/andrenth/ocaml-stdint" 11doc: "http://stdint.forge.ocamlcore.org/doc/" 12dev-repo: "git+https://github.com/andrenth/ocaml-stdint.git" 13bug-reports: "https://github.com/andrenth/ocaml-stdint/issues" 14build: [ 15 ["jbuilder" "build" "-p" name "-j" jobs] 16 ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test} 17] 18depends: [ 19 "ocaml" {< "5.0"} 20 "base-bytes" 21 "jbuilder" {>= "1.0+beta7"} 22] 23synopsis: "signed and unsigned integer types having specified widths" 24description: """ 25The stdint library provides signed and unsigned integer types of various 26fixed widths: 8, 16, 24, 32, 40, 48, 56, 64 and 128 bit. 27This interface is similar to Int32 and Int64 from the base library but provides 28more functions and constants like arithmetic and bit-wise operations, constants 29like maximum and minimum values, infix operators conversion to and from every 30other integer type (including int, float and nativeint), parsing from and 31conversion to readable strings (binary, octal, decimal, hexademical), 32conversion to and from buffers in both big endian and little endian byte order.""" 33url { 34 src: "https://github.com/andrenth/ocaml-stdint/archive/0.5.1.tar.gz" 35 checksum: [ 36 "sha256=d879ad5caf9b8e4680b5d6276aa77ef90b29b41447a979c0a9786ccc6b408757" 37 "md5=02c7da8215cf8e22ffa58405f2a29ea8" 38 ] 39}