-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrandom-token.cabal
105 lines (103 loc) · 3.62 KB
/
random-token.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
cabal-version: 2.4
name: random-token
version: 0.1.0.0
synopsis: Implementation of random token generation and parsing
author: typeable.io
maintainer: [email protected]
license-file: LICENSE
category: Web
build-type: Simple
library
hs-source-dirs: src
ghc-options: -Wall
exposed-modules: Random.Token
build-depends: base >= 4.7 && < 5
, QuickCheck
, aeson
, base64-bytestring
, bytestring
, deepseq
, http-api-data
, text
if !(impl(ghcjs) || arch(javascript))
build-depends: cryptonite
, postgresql-simple
,
default-language: Haskell2010
default-extensions: CPP
, ConstraintKinds
, DataKinds
, DeriveFoldable
, DeriveFunctor
, DeriveGeneric
, DeriveTraversable
, DuplicateRecordFields
, FlexibleContexts
, FlexibleInstances
, FunctionalDependencies
, GADTs
, GeneralizedNewtypeDeriving
, LambdaCase
, MultiParamTypeClasses
, MultiWayIf
, NumDecimals
, OverloadedStrings
, PolyKinds
, QuasiQuotes
, RankNTypes
, RecordWildCards
, RoleAnnotations
, ScopedTypeVariables
, StandaloneDeriving
, TemplateHaskell
, TupleSections
, TypeApplications
, TypeFamilies
, TypeOperators
, UndecidableInstances
, ViewPatterns
test-suite spec
type: exitcode-stdio-1.0
hs-source-dirs: spec
main-is: Test.hs
other-modules: TokenSpec
default-language: Haskell2010
build-depends: base >= 4.10 && < 5
, hspec
, random-token
build-tool-depends: hspec-discover:hspec-discover
ghc-options: -Wall
-threaded
-rtsopts
"-with-rtsopts=-N -A64m -qb0 -n4m -T -I1"
ghc-prof-options: -fprof-auto
default-extensions: ConstraintKinds
, DataKinds
, DeriveFoldable
, DeriveFunctor
, DeriveGeneric
, DeriveTraversable
, DuplicateRecordFields
, FlexibleContexts
, FlexibleInstances
, FunctionalDependencies
, GADTs
, GeneralizedNewtypeDeriving
, LambdaCase
, MultiParamTypeClasses
, MultiWayIf
, NumDecimals
, OverloadedStrings
, PolyKinds
, QuasiQuotes
, RankNTypes
, RecordWildCards
, ScopedTypeVariables
, StandaloneDeriving
, TemplateHaskell
, TupleSections
, TypeApplications
, TypeFamilies
, TypeOperators
, UndecidableInstances
, ViewPatterns