-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathu2f.cabal
More file actions
50 lines (47 loc) · 1.76 KB
/
u2f.cabal
File metadata and controls
50 lines (47 loc) · 1.76 KB
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
-- Initial u2f.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: u2f
version: 0.1.0.2
synopsis: Haskell Universal Two Factor helper toolbox library thing
description: Library useful for server-side U2F Registration and Signin flows.
homepage: https://github.com/EButlerIV/u2f
license: BSD3
license-file: LICENSE
author: Eugene Butler
maintainer: [email protected]
-- copyright:
category: Web
build-type: Simple
extra-source-files: ChangeLog.md, README.md
cabal-version: >=1.10
tested-with: GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.1, GHC == 8.0.2
library
exposed-modules: U2F
, U2F.Types
ghc-options: -Wall
-- other-modules:
-- other-extensions:
build-depends: base >= 4.8 && < 5
, cryptonite >= 0.17 && <= 0.25
, binary >= 0.8.4.0 && < 0.9
, text >= 1.2 && < 1.3
, asn1-encoding >= 0.9 && < 0.10
, asn1-types >= 0.3.2 && < 0.4
, base64-bytestring >= 1.0.0.1 && < 1.0.1.0
, cryptohash >= 0.11 && < 0.12
, aeson >= 1.0 && <= 1.4.0.0
, bytestring >= 0.10 && < 0.11
hs-source-dirs: src
default-language: Haskell2010
test-suite hspec-suite
type: exitcode-stdio-1.0
main-is: test.hs
ghc-options: -Wall
hs-source-dirs: tests
default-language: Haskell2010
build-depends: base
, hspec >= 2.2 && < 2.6
, u2f
, text
, either-unwrap
, bytestring