packages feed

nbt-0.7: nbt.cabal

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