packages feed

graph-wrapper-0.2.5.1: graph-wrapper.cabal

Cabal-Version:      >= 1.8
Build-Type:         Simple
Name:               graph-wrapper
Version:            0.2.5.1
Maintainer:         Max Bolingbroke <batterseapower@hotmail.com>, Sönke Hahn <soenkehahn@gmail.com>
Homepage:           https://github.com/soenkehahn/graph-wrapper
License:            BSD3
License-File:       LICENSE
Author:             Max Bolingbroke
Synopsis:           A wrapper around the standard Data.Graph with a less awkward interface
Description:        A wrapper around the standard Data.Graph with a less awkward interface
Category:           Data Structures, Graphs

source-repository head
    type: git
    location: https://github.com/soenkehahn/graph-wrapper

Library
    Hs-Source-Dirs:
        src
    Exposed-Modules:
        Data.Graph.Wrapper
        Data.Graph.Wrapper.Internal

    Build-Depends:
        base >= 3.0 && < 5.0,
        array >= 0.3 && < 0.6,
        containers >= 0.3 && < 0.6

test-suite spec
    type:
        exitcode-stdio-1.0
    hs-source-dirs:
        test, src
    main-is:
        Spec.hs
    build-depends:
        base >= 3.0 && < 5.0,
        array,
        containers,
        deepseq,
        hspec,
        QuickCheck