-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrandom-token.cabal
More file actions
111 lines (105 loc) · 2.33 KB
/
random-token.cabal
File metadata and controls
111 lines (105 loc) · 2.33 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
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
106
107
108
109
110
111
cabal-version: 2.4
name: random-token
version: 0.1.0.0
synopsis: Implementation of random token generation and parsing
author: typeable.io
maintainer: s9gf4ult@gmail.com
license-file: LICENSE
category: Web
build-type: Simple
library
hs-source-dirs: src
ghc-options: -Wall
exposed-modules: Random.Token
build-depends:
, aeson
, base >=4.9 && <5
, base64-bytestring
, bytestring >=0.10
, deepseq
, http-api-data
, QuickCheck
, text
if !(impl(ghcjs) || arch(javascript) || arch(wasm32))
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