-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathnbt.cabal
57 lines (53 loc) · 2.07 KB
/
nbt.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
Name: nbt
Version: 0.7
Synopsis: A parser/serializer for Minecraft's Named Binary Tag (NBT)
data format.
Description: This package includes a data type for the NBT file
format, notably used to represent saved data in Minecraft and
significant parts of the Minecraft network protocol. All thirteen
tags used in Minecraft 1.13 are implemented.
Homepage: https://github.com/acfoltzer/nbt
Bug-reports: https://github.com/acfoltzer/nbt/issues
License: BSD3
License-file: LICENSE
Author: Adam C. Foltzer <acfoltzer@gmail.com>, Stijn van Drongelen <rhymoid@gmail.com>
Maintainer: Adam C. Foltzer <acfoltzer@gmail.com>
Tested-With: GHC==7.0.4, GHC==7.4.1, GHC==7.6.2, GHC==8.0.2
Category: Data
Build-type: Simple
Cabal-version: 1.14
data-files: test/testWorld/level.dat
test/testWorld/region/r.-1.-1.mcr
test/testWorld/region/r.0.-1.mcr
test/testWorld/region/r.0.0.mcr
source-repository head
type: git
location: git://github.com/acfoltzer/nbt.git
Library
Exposed-modules: Data.NBT
hs-source-dirs: src
default-language: Haskell2010
Build-depends: base == 4.*,
bytestring >= 0.9,
cereal >= 0.3.4,
text,
array >= 0.4
ghc-options: -Wall
Test-Suite round-trip
ghc-options: -Wall
type: exitcode-stdio-1.0
main-is: RoundTrip.hs
hs-source-dirs: test
default-language: Haskell2010
Build-depends: base == 4.*,
bytestring >= 0.9,
cereal >= 0.3.4,
zlib >= 0.5,
text,
HUnit >= 1.2,
QuickCheck >= 2.4,
test-framework,
test-framework-quickcheck2,
test-framework-hunit,
array >= 0.4,
nbt