this repo has no description
1opam-version: "2.0" 2synopsis: """\ 3UNIX version of BLS12-381 primitives implementing the virtual package 4bls12-381 with blst backend""" 5maintainer: "Danny Willems <be.danny.willems@gmail.com>" 6authors: "Danny Willems <be.danny.willems@gmail.com>" 7license: "MIT" 8homepage: "https://gitlab.com/dannywillems/ocaml-bls12-381" 9bug-reports: "https://gitlab.com/dannywillems/ocaml-bls12-381/issues" 10depends: [ 11 "ocaml" {>= "4.08"} 12 "dune" {>= "2.8.4"} 13 "dune-configurator" {build} 14 "zarith" {>= "1.10" & < "2.0"} 15 "bls12-381" {= version} 16 "hex" 17 "alcotest" {with-test} 18 "integers" 19 "bisect_ppx" {with-test & >= "2.5"} 20 "ff-pbt" {>= "0.6.0" & < "0.7.0" & with-test} 21] 22available: arch != "ppc64" & arch != "arm32" & arch != "x86_32" 23build: ["dune" "build" "-j" jobs "-p" name "@install"] 24run-test: ["dune" "runtest" "-p" name "-j" jobs] { ocaml:version < "5.0.0" } 25dev-repo: "git+https://gitlab.com/dannywillems/ocaml-bls12-381.git" 26url { 27 src: 28 "https://gitlab.com/dannywillems/ocaml-bls12-381/-/archive/2.0.1/ocaml-bls12-381-2.0.1.tar.bz2" 29 checksum: [ 30 "md5=493da0d50891299fb9577e6855653dca" 31 "sha512=994ac11cb76b0d83592cfb6b7a6d6f488a5d9c525d9bc1ccd81e797ee56c0e0b9a00d889118b4e5a01282d332d63d94d32ccbb6e063a28c1c53fecbea23dbef6" 32 ] 33} 34x-ci-accept-failures: ["centos-7" "oraclelinux-7"]