-
Notifications
You must be signed in to change notification settings - Fork 3
/
twostep.opam
38 lines (34 loc) · 1.07 KB
/
twostep.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
opam-version: "2.0"
name: "twostep"
version: "1.0.1"
synopsis: "HOTP and TOTP algorithms for 2-step verification (for OCaml)"
description: """
This project implements algorithms for 2-step verification, being the
HMAC-based One-Time Password (RFC4226) and the Time-based One-Time Password
(RFC 6238).
"""
license: "MIT"
maintainer: "Marco Aurélio da Silva <[email protected]>"
authors: ["Marco Aurélio da Silva <[email protected]>"]
homepage: "https://github.com/marcoonroad/twostep"
bug-reports: "https://github.com/marcoonroad/twostep/issues"
dev-repo: "git+https://github.com/marcoonroad/twostep.git"
build: [
["dune" "build" "@check" "-p" name "-j" jobs]
["dune" "build" "-p" name "-j" jobs]
]
run-test: [
["dune" "runtest" "-p" name "-j" jobs]
]
available: [ arch != "arm32" & arch != "x86_32" ]
depends: [
"ocaml" {>= "4.08.0"}
"base" {>= "v0.9.3"}
"hex" {>= "1.2.0"}
"mirage-crypto" {>= "0.6.1"}
"mirage-crypto-rng" {>= "0.6.1"}
"mirage-crypto-pk" {>= "0.6.1"}
"dune" {>= "2.7.0"}
"bisect_ppx" {dev & >= "2.6.0"}
"alcotest" {with-test & >= "0.8.4"}
]