packages feed

nested-sets-0.0.1.0: nested-sets.cabal

name: nested-sets
version: 0.0.1.0
cabal-version: >=1.10
build-type: Simple
license: GPL-3
license-file: LICENSE
copyright: (c) Sarunas Valaskevicius
maintainer: Sarunas Valaskevicius <rakatan@gmail.com>
synopsis: Nested set model implementation
description: This package is a general purpose implementation of nested sets in Haskell.
             .
             Supported functionality includes:
             .
                 * conversion from and to Forest structure from Data.Tree;
                 * position support with moving to parent, sibling and child nodes.
homepage:
stability: alpha
bug-reports: 
category: Data Structures
author: Sarunas Valaskevicius

source-repository head
    type: git
    location: https://github.com/svalaskevicius/nested-sets

library
    Exposed-modules:    Data.NestedSet
    default-language:   Haskell2010
    ghc-options:
        -Wall
    hs-source-dirs:     src/lib
    build-depends:      base >= 4.6.0.0 && < 5, containers >= 0.5.5.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, nested-sets, hspec >= 1.11.4, containers >= 0.5.5.0