data-size-0.1.0.3: data-size.cabal
-- Initial data-size.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: data-size
version: 0.1.0.3
synopsis: Profiling of data structures
description: Profiling of data structures
for counting the # of object allocated for a value
and estimating the total # of words used for a value.
Statistics for every type or constructor
occuring as component or subcomponent are gathered.
license: MIT
license-file: LICENSE
author: Uwe Schmidt
maintainer: uwe@fh-wedel.de
copyright: 2013 Uwe Schmidt
category: Testing
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
exposed-modules: Data.Size
Data.Size.Base
other-modules: Data.Size.Instances
other-extensions: DeriveDataTypeable
, BangPatterns
build-depends: base >= 4.6 && < 5
, bytestring >= 0.10
, containers >= 0.5
hs-source-dirs: .
ghc-options: -Wall -fwarn-tabs
default-language: Haskell2010