-
Notifications
You must be signed in to change notification settings - Fork 0
/
gamemaker-risk-of-rain.cabal
71 lines (53 loc) · 1.74 KB
/
gamemaker-risk-of-rain.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
cabal-version: 1.12
name: gamemaker-risk-of-rain
version: 0.3.0.0
synopsis: Risk of Rain 1 GameMaker data file unpacking
description: Please see the README on GitHub at <https://github.com/burningwitness/gamemaker-risk-of-rain#readme>
category: Decompiler
homepage: https://github.com/burningwitness/gamemaker-risk-of-rain#readme
bug-reports: https://github.com/burningwitness/gamemaker-risk-of-rain/issues
author: Oleksii Divak
maintainer: Oleksii Divak <frozenwitness@gmail.com>
copyright: (c) 2021, Oleksii Divak
license: BSD3
license-file: LICENSE
build-type: Simple
source-repository head
type: git
location: https://github.com/burningwitness/gamemaker-risk-of-rain
executable decompile
main-is: Main.hs
hs-source-dirs: app/decompile
ghc-options: -Wall
build-depends: base
, binary
, bytestring
, gamemaker-risk-of-rain
, optics-core
default-language: Haskell2010
library
exposed-modules: GameMaker.RiskOfRain.Decompilation
GameMaker.RiskOfRain.Disassembly
GameMaker.RiskOfRain.Unpacking
hs-source-dirs: src
ghc-options: -Wall
build-depends: base >=4.12 && <5
, binary
, bytestring
, containers
, optics-th
, primitive
, time
default-language: Haskell2010
test-suite coherence
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test/coherence
ghc-options: -Wall
build-depends: base
, binary
, bytestring
, gamemaker-risk-of-rain
, optics-core
, time
default-language: Haskell2010