-
Notifications
You must be signed in to change notification settings - Fork 5
/
webauthn.cabal
76 lines (72 loc) · 1.71 KB
/
webauthn.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
67
68
69
70
71
72
73
74
75
76
cabal-version: 2.4
-- Initial package description 'webauthn.cabal' generated by 'cabal init'.
-- For further documentation, see http://haskell.org/cabal/users-guide/
name: webauthn
version: 0.0.1
synopsis: Web Authentication API
-- description:
homepage: https://github.com/fumieval/webauthn
-- bug-reports:
license: BSD-3-Clause
license-file: LICENSE
author: Fumiaki Kinoshita, Sumit Raja <[email protected]>
maintainer: [email protected]
-- copyright:
category: Web
-- extra-source-files: CHANGELOG.md
common base-common
build-depends:
base == 4.*
, x509-store
, bytestring
, base64-bytestring
, errors
, aeson
library
import: base-common
exposed-modules:
Web.WebAuthn
Web.WebAuthn.Types
Web.WebAuthn.FIDOU2F
Web.WebAuthn.Packed
Web.WebAuthn.Signature
Web.WebAuthn.TPM
Web.WebAuthn.AndroidSafetyNet
build-depends:
containers
, cryptonite
, cborg
, cereal
, hashable
, aeson
, asn1-types
, asn1-encoding
, text
, transformers
, x509
, x509-validation
, memory
, serialise
, base16-bytestring >= 1.0.0.0 && < 1.1.0.0
, base64-bytestring
hs-source-dirs: src
ghc-options: -Wall
default-language: Haskell2010
default-extensions:
DuplicateRecordFields
OverloadedStrings
test-suite test-webauthn
import: base-common
type: exitcode-stdio-1.0
main-is: Tests.hs
hs-source-dirs: test
default-language: Haskell2010
default-extensions:
QuasiQuotes
OverloadedStrings
build-depends:
webauthn
, interpolate
, tasty
, tasty-hunit
, uri-bytestring