name: gtk-largeTreeStore
version: 0.0.1.0
cabal-version: >=1.10
build-type: Simple
license: LGPL-3
license-file: LICENSE
copyright: (c) Sarunas Valaskevicius
maintainer: Sarunas Valaskevicius <rakatan@gmail.com>
synopsis: Large TreeStore support for gtk2hs
description: Uses nested set model to store tree iterators and achieves larger data support than the
             original gtk2hs implementation.
homepage:
stability: alpha
bug-reports: 
category: Graphics, Data Structures
author: Sarunas Valaskevicius

source-repository head
    type: git
    location: https://github.com/svalaskevicius/gtk2hs-largeTreeStore

library
    Exposed-modules:    GtkExtras.LargeTreeStore
    default-language:   Haskell2010
    ghc-options:
        -Wall
    hs-source-dirs:     src/lib
    build-depends:      base >= 4.6.0.0 && < 5, glib >=0.13.0.0, gtk3 >=0.13.0.0, containers >= 0.5.5.0,
                        mtl >= 2.1.3.0, nested-sets >= 0.0.1.0

test-suite spec
  type:
      exitcode-stdio-1.0
  default-language: Haskell2010
  ghc-options:
      -Wall -Werror
  hs-source-dirs:
      test
  main-is:
      Spec.hs
  other-modules:
  build-depends:        base >= 4.6.0.0, gtk-largeTreeStore, hspec >= 1.11.4, containers >= 0.5.5.0, gtk3 >= 0.13.0.0