this repo has no description
1opam-version: "2.0" 2synopsis: "HOTP and TOTP algorithms for 2-step verification (for OCaml)" 3description: """ 4This project implements algorithms for 2-step verification, being the 5HMAC-based One-Time Password (RFC4226) and the Time-based One-Time Password 6(RFC 6238). 7""" 8license: "MIT" 9maintainer: "Marco Aurélio da Silva <marcoonroad@gmail.com>" 10authors: ["Marco Aurélio da Silva <marcoonroad@gmail.com>"] 11homepage: "https://github.com/marcoonroad/twostep" 12bug-reports: "https://github.com/marcoonroad/twostep/issues" 13dev-repo: "git+https://github.com/marcoonroad/twostep.git" 14 15build: [ 16 ["dune" "build" "-p" name "-j" jobs] 17] 18 19run-test: [ 20 ["dune" "runtest" "-p" name "-j" jobs] 21] 22 23available: [ arch != "arm32" & arch != "x86_32" ] 24 25depends: [ 26 "ocaml" {>= "4.08.0"} 27 "base" {>= "v0.9.3"} 28 "hex" {>= "1.2.0"} 29 "mirage-crypto" {>= "0.6.1" & < "1.0.0"} 30 "mirage-crypto-rng" {>= "0.6.1" & < "0.11.0"} 31 "mirage-crypto-pk" {>= "0.6.1" & < "1.0.0"} 32 "dune" {>= "1.7.0"} 33 "alcotest" {with-test & >= "0.8.4"} 34] 35url { 36 src: "https://github.com/marcoonroad/twostep/archive/1.0.1.tar.gz" 37 checksum: [ 38 "md5=6af79936f7a0d04d2954ea768a01cf2a" 39 "sha512=087509e0d4a7d53f0aa968a013444c645d7a08bdd6a3c707176cfca47d695315344c54e425887009ea3c12a2a7e4b084837b8a52cb7a6a8b34a955cfb57f1f31" 40 ] 41}