this repo has no description
1opam-version: "2.0" 2homepage: "https://github.com/sg2342/ocaml-rfc6287" 3dev-repo: "git+https://github.com/sg2342/ocaml-rfc6287.git" 4bug-reports: "https://github.com/sg2342/ocaml-rfc6287/issues" 5maintainer: ["Stefan Grundmann <sg2342@googlemail.com>"] 6license: "BSD-2-Clause" 7doc: "https://sg2342.github.io/ocaml-rfc6287/doc" 8synopsis: "OCRA (OATH Challenge-Response Algorithm) implementation in OCaml" 9description: """ 10OCaml implementation of [RFC6287](http://tools.ietf.org/html/rfc6287) OCRA (OATH Challenge-Response Algorithm) 11incl. [RFC Errata ID: 3729](http://www.rfc-editor.org/errata_search.php?eid=3729) 12""" 13 14build: [ 15 ["dune" "subst"] {dev} 16 ["dune" "build" "-p" name "-j" jobs ] 17 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 18] 19 20depends: [ 21 "ocaml" {>= "4.07.0"} 22 "dune" {>= "1.1"} 23 "mirage-crypto" {< "1.0.0"} 24 "mirage-crypto-pk" {< "1.0.0"} 25 "mirage-crypto-rng" {< "1.0.0"} 26 "mirage-crypto-rng" {with-test & < "0.11.0"} 27 "cstruct" {>= "3.2.0" & < "6.1.0"} 28 "astring" 29 "hex" 30 "rresult" 31 "ounit" {with-test} 32 "bisect_ppx" {dev & >= "1.3.0"} 33] 34authors: "Stefan Grundmann <sg2342@googlemail.com>" 35url { 36 src: 37 "https://github.com/sg2342/ocaml-rfc6287/releases/download/1.0.4/rfc6287-1.0.4.tbz" 38 checksum: [ 39 "sha256=9c33a5cc8330a7557438f1ea2535128d992bbe175429b7d0f5c9f183acef6f66" 40 "sha512=6543f3f26d1b7475972591359b873a01fb79f923759b6d74b1317a6116d09a4cebdcad6b92276eb3a4271d043c048b8a42c676a91f8eb48244c89aff7b8c76d4" 41 ] 42}