-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathstdint.opam
44 lines (43 loc) · 1.47 KB
/
stdint.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Signed and unsigned integer types having specified widths"
description: """
The stdint library provides signed and unsigned integer types of various fixed
widths: 8, 16, 24, 32, 40, 48, 56, 64 and 128 bit.
This interface is similar to Int32 and Int64 from the base library but provides
more functions and constants like arithmetic and bit-wise operations, constants
like maximum and minimum values, infix operators conversion to and from every
other integer type (including int, float and nativeint), parsing from and
conversion to readable strings (binary, octal, decimal, hexademical), conversion
to and from buffers in both big endian and little endian byte order."""
maintainer: ["Markus W. Weissmann <[email protected]>"]
authors: [
"Andre Nathan <[email protected]>"
"Jeff Shaw <[email protected]>"
"Markus W. Weissmann <[email protected]>"
"Florian Pichlmeier <[email protected]>"
]
license: "MIT"
homepage: "https://github.com/andrenth/ocaml-stdint"
doc: "https://andrenth.github.io/ocaml-stdint/"
bug-reports: "https://github.com/andrenth/ocaml-stdint/issues"
depends: [
"dune" {>= "3.0"}
"ocaml" {>= "4.03"}
"qcheck" {with-test}
"odoc" {with-doc}
]
dev-repo: "git+https://github.com/andrenth/ocaml-stdint.git"
build: [
["dune" "subst"] {pinned}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@doc" {with-doc}
]
]