-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathon-demand-minecraft.cabal
76 lines (72 loc) · 2.38 KB
/
on-demand-minecraft.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.2
name: on-demand-minecraft
version: 0.1.0.0
synopsis:
-- description:
homepage:
license: GPL-3.0-or-later
author: Silvan Mosberger
maintainer: contact@infinisil.com
copyright: 2020 Silvan Mosberger
category:
build-type: Simple
extra-source-files: readme.md
executable on-demand-minecraft
hs-source-dirs: app
main-is: Main.hs
default-language: Haskell2010
ghc-options: -O2 -flate-specialise -fspecialise-aggressively -fplugin=Polysemy.Plugin -threaded
build-depends: base >= 4.12 && < 5
, on-demand-minecraft
, network
, polysemy
, polysemy-plugin
, async
, bytestring
, stm
, text
, containers
, directory
, async
, DOH
, time
library
hs-source-dirs: lib
exposed-modules: Minecraft
Minecraft.Types
Minecraft.Packet
Minecraft.Effect
Minecraft.Protocol
DigitalOcean
Config
State
Connection
default-language: Haskell2010
ghc-options: -O2 -flate-specialise -fspecialise-aggressively -fplugin=Polysemy.Plugin
build-depends: base >= 4.12 && < 5
, store
, bytestring
, text
, aeson
, stm
, network
, polysemy
, polysemy-plugin
, DOH
, mtl
, containers
, directory
, async
, time
test-suite on-demand-minecraft-tests
hs-source-dirs: tests
main-is: Main.hs
default-language: Haskell2010
type: exitcode-stdio-1.0
build-depends: base >= 4.12 && < 5
, on-demand-minecraft
, hspec
, store
, bytestring
, QuickCheck
, quickcheck-instances