forked from haskell-hvr/OTP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
one-time-password.cabal
66 lines (52 loc) · 1.88 KB
/
one-time-password.cabal
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: one-time-password
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 1.0.0.0
synopsis: HMAC-Based and Time-Based One-Time Passwords
description: Implements HMAC-Based One-Time Password Algorithm as
defined in RFC 4226 and Time-Based One-Time Password
Algorithm as defined in RFC 6238.
license: MIT
license-file: LICENSE
copyright: (c) 2012 Artem Leshchev, 2015 Aleksey Uimanov
author: Artem Leshchev, Aleksey Uimanov
maintainer: [email protected] <Aleksey Uimanov>
homepage: https://github.com/s9gf4ult/one-time-password
bug-reports: https://github.com/s9gf4ult/one-time-password/issues
category: Cryptography
build-type: Simple
cabal-version: >=1.10
extra-source-files: CHANGELOG.md
, README.md
source-repository head
type: git
location: git://github.com/s9gf4ult/one-time-password.git
library
default-language: Haskell2010
hs-source-dirs: src
default-extensions: OverloadedStrings
exposed-modules: Data.OTP
build-depends: base >= 3 && < 5
, byteable
, bytestring
, cereal
, cryptohash
, time >= 1.1
ghc-options: -Wall
test-suite tests
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
default-extensions: ExistentialQuantification
, OverloadedStrings
, RankNTypes
main-is: Test.hs
build-depends: base >= 3 && < 5
, bytestring
, cryptohash
, one-time-password
, tasty
, tasty-hunit
, time >= 1.1
ghc-options: -Wall