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