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 "ocaml" {>= "4.07" & < "5.0"}
26 "dune" {>= "1.11"}
27]
28build: [
29 ["dune" "subst"] {dev}
30 [
31 "dune"
32 "build"
33 "-p"
34 name
35 "-j"
36 jobs
37 "@install"
38 "@runtest" {with-test}
39 "@doc" {with-doc}
40 ]
41]
42dev-repo: "git+https://github.com/andrenth/ocaml-stdint.git"
43url {
44 src:
45 "https://github.com/andrenth/ocaml-stdint/releases/download/0.6.0/stdint-0.6.0.tbz"
46 checksum: [
47 "sha256=1f0bbabc769c10053165c5ec80feb4faaab42a54c610307247845be5918d13cd"
48 "sha512=00d1f864d0f353c4922c4c743df209893e3558a7cee9a1e7e51be5da691657ad5f1d22acf8bee583573c08166f8b2705632fd955e100dd0dea8be4e9d2fbcc48"
49 ]
50}