this repo has no description
1opam-version: "2.0" 2synopsis: 3 "Optimised functions to read and write int16/32/64 from strings and bigarrays" 4description: """ 5The library implements three modules: 6* [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; 7* [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; 8* [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.""" 9maintainer: "pierre.chambart@ocamlpro.com" 10authors: "Pierre Chambart" 11homepage: "https://github.com/OCamlPro/ocplib-endian" 12doc: "https://ocamlpro.github.io/ocplib-endian/ocplib-endian/" 13bug-reports: "https://github.com/OCamlPro/ocplib-endian/issues" 14depends: [ 15 "base-bytes" 16 "ocaml" {>= "4.02.3"} 17 "cppo" {>= "1.1.0" & build} 18 "dune" {>= "1.0"} 19] 20build: [ 21 "dune" 22 "build" 23 "-p" 24 name 25 "-j" 26 jobs 27 "@install" 28 "@runtest" {with-test} 29 "@doc" {with-doc} 30] 31dev-repo: "git+https://github.com/OCamlPro/ocplib-endian.git" 32url { 33 src: "https://github.com/OCamlPro/ocplib-endian/archive/1.1.tar.gz" 34 checksum: [ 35 "md5=dedf4d69c1b87b3c6c7234f632399285" 36 "sha512=39351c666d1394770696fa89ac62f7c137ad1697d99888bfba2cc8de2c61df05dd8b3aa327c117bf38f3e29e081026d2c575c5ad0022bde92b3d43aba577d3f9" 37 ] 38}