-
Notifications
You must be signed in to change notification settings - Fork 0
/
hopper.cabal
52 lines (43 loc) · 1.25 KB
/
hopper.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
cabal-version: 2.4
name: hopper
version: 0.1.0.0
synopsis: Data parser for Minecraft
homepage: https://github.com/typecraftio
license: MIT
license-file: LICENSE
author: Junhyung Im <[email protected]>
maintainer: Junhyung Im <[email protected]>
extra-source-files: CHANGELOG.md
library
exposed-modules:
Data.Hopper, Data.Hopper.AssetHeader
-- other-modules:
-- other-extensions:
build-depends:
base == 4.14.1.0,
aeson == 1.5.6.0,
containers == 0.6.2.1,
unordered-containers == 0.2.13.0,
text == 1.2.3.2,
filepath == 1.4.2.1,
bytestring == 0.10.12.0,
directory == 1.3.6.0,
async == 2.2.3
hs-source-dirs: src
default-language: Haskell2010
executable hopper
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends:
hopper,
base == 4.14.1.0,
containers == 0.6.2.1,
unordered-containers == 0.2.13.0,
aeson == 1.5.6.0,
bytestring == 0.10.12.0,
directory == 1.3.6.0,
filepath == 1.4.2.1,
time == 1.9.3
hs-source-dirs: app
default-language: Haskell2010