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"}
27 "qcheck" {with-test}
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]
43url {
44 src:
45 "https://github.com/andrenth/ocaml-stdint/releases/download/0.7.1/stdint-0.7.1.tbz"
46 checksum: [
47 "sha256=3387ca659b500efd83bb52792d61e56ba2f8bf7198f488ae35daf499d73396b4"
48 "sha512=c594b88848f9119cb9401e21cc6b464913d0f6d058ea60424dde367c072aac541371ee3f70c87f19232cba9328f44a4ec3c925eebb0992fce662ebddd9a0e579"
49 ]
50}
51x-commit-hash: "e9ed8e84e730ca8f3750e2a82cd5b46c2ea70d9a"