this repo has no description
1opam-version: "2.0" 2synopsis: 3 "Implementation of some cryptographic hash primitives using the scalar field of BLS12-381" 4maintainer: "Danny Willems <be.danny.willems@gmail.com>" 5authors: "Danny Willems <be.danny.willems@gmail.com>" 6license: "MIT" 7homepage: "https://gitlab.com/nomadic-labs/cryptography/ocaml-bls12-381-hash" 8bug-reports: 9 "https://gitlab.com/nomadic-labs/cryptography/ocaml-bls12-381-hash/issues" 10depends: [ 11 "ocaml" {>= "4.12"} 12 "dune" {>= "2.8.4"} 13 "bls12-381" {>= "5.0.0" & < "6.1.0"} 14 "alcotest" {with-test} 15 "bisect_ppx" {with-test & >= "2.5"} 16] 17available: 18 arch != "ppc64" & arch != "arm32" & arch != "x86_32" & arch != "s390x" 19build: ["dune" "build" "-j" jobs "-p" name "@install"] 20run-test: ["dune" "runtest" "-p" name "-j" jobs] 21dev-repo: 22 "git+https://gitlab.com/nomadic-labs/cryptography/ocaml-bls12-381-hash.git" 23url { 24 src: 25 "https://gitlab.com/nomadic-labs/cryptography/ocaml-bls12-381-hash/-/archive/0.0.3/ocaml-bls12-381-hash-0.0.3.tar.bz2" 26 checksum: [ 27 "md5=0674b0cad13d63d3685b35a5e6941674" 28 "sha512=8ad3f3105a413a98f09bbed2505bcad5bada8ae3b350a6d1a0d1d770e7726a6684a6d3f1d0a9e9fc249bff8374dbbd6a0c6fbd56a618d999bab1dce34174064c" 29 ] 30} 31x-ci-accept-failures: ["centos-7" "oraclelinux-7"]