Skip to content

Commit 46c2c11

Browse files
authored
Merge pull request ocaml#21032 from marcoonroad/opam-publish-twostep.1.0.1
Package twostep.1.0.1
2 parents 1bcdfde + abfb256 commit 46c2c11

File tree

1 file changed

+41
-0
lines changed
  • packages/twostep/twostep.1.0.1

1 file changed

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

0 commit comments

Comments
 (0)