-
Notifications
You must be signed in to change notification settings - Fork 197
Expand file tree
/
Copy pathcodeworld-auth.cabal
More file actions
68 lines (65 loc) · 3.59 KB
/
codeworld-auth.cabal
File metadata and controls
68 lines (65 loc) · 3.59 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
name: codeworld-auth
version: 0.1
synopsis: Google and local authentication for CodeWorld
homepage: https://github.com/google/codeworld#readme
license: Apache
license-file: LICENSE
author: Richard Cook
maintainer: rcook@rcook.org
copyright: (c) 2019, The CodeWorld Authors
category: Command Line
build-type: Simple
cabal-version: >= 1.10
extra-source-files: README.md
source-repository head
type: git
location: https://github.com/google/codeworld.git
library
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -W
-Wall
-fwarn-unused-imports
build-depends: aeson
, base >= 4.7 && < 5
, base64-bytestring
, bytestring
, codeworld-account
, containers
, cryptonite
, directory
, filepath
, http-conduit
, jwt >= 0.10.0
, snap-core
, split
, text
, time
, transformers
, unordered-containers
exposed-modules: CodeWorld.Auth
, CodeWorld.Auth.GoogleAuth
, CodeWorld.Auth.Http
, CodeWorld.Auth.LocalAuth
, CodeWorld.Auth.Secret
, CodeWorld.Auth.Time
, CodeWorld.Auth.Token
, CodeWorld.Auth.Types
, CodeWorld.Auth.Util
executable codeworld-auth
default-language: Haskell2010
hs-source-dirs: app
main-is: Main.hs
ghc-options: -threaded
-rtsopts
-with-rtsopts=-N
-W
-Wall
-fwarn-unused-imports
build-depends: base >= 4.7 && < 5
, bytestring
, cassava
, codeworld-account
, codeworld-auth
, optparse-applicative
, random