-
Notifications
You must be signed in to change notification settings - Fork 2
/
minecraft-data.cabal
46 lines (44 loc) · 1.73 KB
/
minecraft-data.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
cabal-version: 1.16
name: minecraft-data
version: 0.4.0
synopsis: a DSL for generating minecraft commands and levels
description: Minecraft is a very popular sandbox video game. This library is intended for creating, parsing, and modifying world files, and creating .mcfunction files.
homepage: https://github.com/stepcut/minecraft-data
license: BSD3
license-file: LICENSE
author: [email protected]
maintainer: [email protected]
category: Game, Minecraft
build-type: Simple
tested-with: GHC == 8.6.5, GHC==8.8.1, GHC==8.10.1
source-repository head
type: git
location: https://github.com/stepcut/minecraft-data.git
library
exposed-modules: Minecraft.Anvil
Minecraft.Block
Minecraft.Chunk
Minecraft.Combinators
Minecraft.Command
Minecraft.Core
Minecraft.Level
Minecraft.Player
other-extensions: DeriveDataTypeable, DeriveGeneric, OverloadedStrings
build-depends: array,
base >=4.8 && <4.15,
bimap,
bytestring,
containers,
cereal,
directory,
filepath,
lens,
mtl,
nbt >= 0.6 && < 0.8,
random,
text >=1.2 && <1.3,
text-show,
time,
vector,
zlib
default-language: Haskell2010