this repo has no description
1opam-version: "2.0" 2license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception" 3synopsis: 4 "Optimised functions to read and write int16/32/64 from strings and bigarrays" 5description: """\ 6The library implements three modules: 7* [EndianString](https://github.com/OCamlPro/ocplib-endian/blob/master/src/endianString.mli) works directly on strings, and provides submodules BigEndian and LittleEndian, with their unsafe counter-parts; 8* [EndianBytes](https://github.com/OCamlPro/ocplib-endian/blob/master/src/endianBytes.mli) works directly on bytes, and provides submodules BigEndian and LittleEndian, with their unsafe counter-parts; 9* [EndianBigstring](https://github.com/OCamlPro/ocplib-endian/blob/master/src/endianBigstring.mli) works on bigstrings (Bigarrays of chars), and provides submodules BigEndian and LittleEndian, with their unsafe counter-parts.""" 10maintainer: "pierre.chambart@ocamlpro.com" 11authors: "Pierre Chambart" 12homepage: "https://github.com/OCamlPro/ocplib-endian" 13doc: "https://ocamlpro.github.io/ocplib-endian/ocplib-endian/" 14bug-reports: "https://github.com/OCamlPro/ocplib-endian/issues" 15depends: [ 16 "base-bytes" 17 "ocaml" {>= "4.03.0"} 18 "cppo" {>= "1.1.0" & build} 19 "dune" {>= "1.0"} 20] 21build: [ 22 "dune" 23 "build" 24 "-p" 25 name 26 "-j" 27 jobs 28 "@install" 29 "@runtest" {with-test} 30 "@doc" {with-doc} 31] 32dev-repo: "git+https://github.com/OCamlPro/ocplib-endian.git" 33url { 34 src: 35 "https://github.com/OCamlPro/ocplib-endian/archive/refs/tags/1.2.tar.gz" 36 checksum: [ 37 "md5=8d5492eeb7c6815ade72a7415ea30949" 38 "sha512=2e70be5f3d6e377485c60664a0e235c3b9b24a8d6b6a03895d092c6e40d53810bfe1f292ee69e5181ce6daa8a582bfe3d59f3af889f417134f658812be5b8b85" 39 ] 40}